diff options
author | Craig Tiller <ctiller@google.com> | 2016-09-16 11:22:42 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-09-16 11:22:42 -0700 |
commit | 5709469c4643102130cc4a4745c8bf0a591121dd (patch) | |
tree | 548673600097fa0c58aed08bb483f91d581a19d1 /tools | |
parent | c36a736caa67736b8b681e74fd35e5586bcb6e1b (diff) |
Fix sync/async
Diffstat (limited to 'tools')
-rw-r--r-- | tools/run_tests/performance/scenario_config.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/run_tests/performance/scenario_config.py b/tools/run_tests/performance/scenario_config.py index a43a6b6b36..5621c205f2 100644 --- a/tools/run_tests/performance/scenario_config.py +++ b/tools/run_tests/performance/scenario_config.py @@ -262,7 +262,8 @@ class CXXLanguage: yield _ping_pong_scenario( 'cpp_protobuf_%s_unary_qps_unconstrained_%s_%d_channels_%d_outstanding' % (synchronicity, secstr, channels, outstanding), rpc_type='UNARY', - client_type='ASYNC_CLIENT', server_type='ASYNC_SERVER', + client_type='%s_CLIENT' % synchronicity.upper(), + server_type='%s_SERVER' % synchronicity.upper(), unconstrained_client=synchronicity, secure=secure, categories=[SWEEP], channels=channels, outstanding=outstanding) |