From 1b71e214faeca2ad897c7ebb4b0ec47fdac3cd9b Mon Sep 17 00:00:00 2001 From: Charles Francoise Date: Wed, 29 Nov 2017 10:08:54 +0100 Subject: [PATCH 1/2] Remove bytes limitation from README.md --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index c7396cc154b..5d86a5addc5 100644 --- a/README.md +++ b/README.md @@ -216,7 +216,6 @@ To use the same port for custom HTTP handlers (e.g. serving `swagger.json`), gRP ### Want to support But not yet. -* bytes fields in path parameter. #5 * Optionally generating the entrypoint. #8 * `import_path` parameter From 05fe520d964eefe692fcd3536a67a9c6726a66a9 Mon Sep 17 00:00:00 2001 From: Andrew Z Allen Date: Sun, 10 Dec 2017 17:37:07 -0700 Subject: [PATCH 2/2] Fix syntax error --- runtime/convert.go | 1 + 1 file changed, 1 insertion(+) diff --git a/runtime/convert.go b/runtime/convert.go index 944b2215641..afbcbd4fa10 100644 --- a/runtime/convert.go +++ b/runtime/convert.go @@ -70,6 +70,7 @@ func Bytes(val string) ([]byte, error) { return nil, err } return b, nil +} // Timestamp converts the given RFC3339 formatted string into a timestamp.Timestamp. func Timestamp(val string) (*timestamp.Timestamp, error) {