aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/python/grpcio_tests/tests/stress/client.py
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-01-09 13:49:37 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2018-01-09 13:49:37 -0800
commitb04efac6a5ac0842bc2b6c3e72b786b646644ac0 (patch)
treeca70be08a55ea3aeade97e226b232b1786c63656 /src/python/grpcio_tests/tests/stress/client.py
parentb928fd496efbe2265169077bcfdf684f7ad6aea3 (diff)
parent0ea629c61ec70a35075e800bc3f85651f00e746f (diff)
Merge branch 'master' of https://github.com/grpc/grpc into channel-tracing
Diffstat (limited to 'src/python/grpcio_tests/tests/stress/client.py')
-rw-r--r--src/python/grpcio_tests/tests/stress/client.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/python/grpcio_tests/tests/stress/client.py b/src/python/grpcio_tests/tests/stress/client.py
index 40caa3926a..41f2e1b6c2 100644
--- a/src/python/grpcio_tests/tests/stress/client.py
+++ b/src/python/grpcio_tests/tests/stress/client.py
@@ -102,8 +102,10 @@ def _get_channel(target, args):
root_certificates = None # will load default roots.
channel_credentials = grpc.ssl_channel_credentials(
root_certificates=root_certificates)
- options = (('grpc.ssl_target_name_override',
- args.server_host_override,),)
+ options = ((
+ 'grpc.ssl_target_name_override',
+ args.server_host_override,
+ ),)
channel = grpc.secure_channel(
target, channel_credentials, options=options)
else: