Run YAPF check for python example

pull/16924/head
Youngchan Kim 6 years ago
parent 832460bb94
commit 2e2ef9dcdf
  1. 7
      examples/python/helloworld/greeter_client_with_options.py

@ -30,12 +30,13 @@ def run():
with grpc.insecure_channel(
target='localhost:50051',
options=[('grpc.lb_policy_name', 'pick_first'),
('grpc.enable_retries', 0),
('grpc.keepalive_timeout_ms', 10000)]) as channel:
('grpc.enable_retries', 0), ('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)
response = stub.SayHello(
helloworld_pb2.HelloRequest(name='you'), timeout=10)
print("Greeter client received: " + response.message)

Loading…
Cancel
Save