Skip to content

Commit

Permalink
Fix sync/async
Browse files Browse the repository at this point in the history
  • Loading branch information
ctiller committed Sep 16, 2016
1 parent c36a736 commit 5709469
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/run_tests/performance/scenario_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,8 @@ def scenarios(self):
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)

Expand Down

0 comments on commit 5709469

Please sign in to comment.