From 46121b130540653ee599fb5694729e3b576269e9 Mon Sep 17 00:00:00 2001 From: Joshua Humphries Date: Mon, 19 Feb 2018 14:01:04 -0500 Subject: [PATCH] fix bad port number in README examples (#7) --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 1c19d53..ddf6558 100644 --- a/README.md +++ b/README.md @@ -46,21 +46,21 @@ grpcurl grpc.server.com:443 my.custom.server.Service/Method To list all services exposed by a server, use the "list" verb. When using protoset files instead of server reflection, this lists all services defined in the protoset files. ``` -grpcurl localhost:80808 list +grpcurl localhost:8787 list grpcurl -protoset my-protos.bin list ``` The "list" verb also lets you see all methods in a particular service: ``` -grpcurl localhost:80808 list my.custom.server.Service +grpcurl localhost:8787 list my.custom.server.Service ``` The "describe" verb will print the type of any symbol that the server knows about or that is found in a given protoset file and also print the full descriptor for the symbol, in JSON. ``` -grpcurl localhost:80808 describe my.custom.server.Service.MethodOne +grpcurl localhost:8787 describe my.custom.server.Service.MethodOne grpcurl -protoset my-protos.bin describe my.custom.server.Service.MethodOne ```