14 """gRPC Python helloworld.Greeter client with channel options and call timeout parameters."""
16 from __future__
import print_function
22 import helloworld_pb2_grpc
32 options=[(
'grpc.lb_policy_name',
'pick_first'),
33 (
'grpc.enable_retries', 0),
34 (
'grpc.keepalive_timeout_ms', 10000)
41 print(
"Greeter client received: " + response.message)
44 if __name__ ==
'__main__':