diff options
author | Youngchan Kim <ovekyc@gmail.com> | 2018-10-20 15:12:01 +0900 |
---|---|---|
committer | Youngchan Kim <ovekyc@gmail.com> | 2018-10-23 13:45:25 +0900 |
commit | 832460bb94a77080c4750d4d832fec92898763a3 (patch) | |
tree | bb340f1c5d524439f82483c75de3d1ef579e8e1a /examples | |
parent | 0f9733eb85403417b5c749557d8c17a42d773962 (diff) |
Add link - gRPC Python package documents
Diffstat (limited to 'examples')
-rw-r--r-- | examples/python/helloworld/greeter_client_with_options.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/python/helloworld/greeter_client_with_options.py b/examples/python/helloworld/greeter_client_with_options.py index 984fb8d5f2..2dbfd9e4ca 100644 --- a/examples/python/helloworld/greeter_client_with_options.py +++ b/examples/python/helloworld/greeter_client_with_options.py @@ -34,6 +34,7 @@ def run(): ('grpc.keepalive_timeout_ms', 10000)]) as channel: stub = helloworld_pb2_grpc.GreeterStub(channel) # Timeout in seconds. + # Please refer gRPC Python documents for more detail. https://grpc.io/grpc/python/grpc.html response = stub.SayHello(helloworld_pb2.HelloRequest(name='you'), timeout=10) print("Greeter client received: " + response.message) |