aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-09-16 11:22:42 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-09-16 11:22:42 -0700
commit5709469c4643102130cc4a4745c8bf0a591121dd (patch)
tree548673600097fa0c58aed08bb483f91d581a19d1 /tools
parentc36a736caa67736b8b681e74fd35e5586bcb6e1b (diff)
Fix sync/async
Diffstat (limited to 'tools')
-rw-r--r--tools/run_tests/performance/scenario_config.py3
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)