summaryrefslogtreecommitdiff
path: root/tutorial/go
diff options
context:
space:
mode:
authorJens Geyer <jensg@apache.org>2013-09-08 00:31:20 +0200
committerJens Geyer <jensg@apache.org>2013-09-08 00:31:59 +0200
commitc949514e41f9e2b31b061f1d81fd5305d0861a46 (patch)
tree423537da97b11c3cd52c9672069f34790ae903f5 /tutorial/go
parentec8744c4dd84f8077a590cdcbb58a921cec1d14c (diff)
downloadthrift-c949514e41f9e2b31b061f1d81fd5305d0861a46.tar.gz
THRIFT-2170 Generated Go code should populate all ReadErrors completely
Patch: Jens Geyer
Diffstat (limited to 'tutorial/go')
-rw-r--r--tutorial/go/src/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tutorial/go/src/main.go b/tutorial/go/src/main.go
index 96e5ec911..63154e3b8 100644
--- a/tutorial/go/src/main.go
+++ b/tutorial/go/src/main.go
@@ -35,7 +35,7 @@ func Usage() {
func main() {
flag.Usage = Usage
server := flag.Bool("server", false, "Run server")
- protocol := flag.String("P", "binary", "Specify the protocol (binary, compact, simplejson)")
+ protocol := flag.String("P", "binary", "Specify the protocol (binary, compact, json, simplejson)")
framed := flag.Bool("framed", false, "Use framed transport")
buffered := flag.Bool("buffered", false, "Use buffered transport")
addr := flag.String("addr", "localhost:9090", "Address to listen to")