From e9b1cddb973c05c2e8f284f593f4f18529556562 Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Thu, 6 Feb 2020 11:57:30 -0800 Subject: [PATCH] Fix the cpp server scenarios --- tools/run_tests/performance/scenario_config.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tools/run_tests/performance/scenario_config.py b/tools/run_tests/performance/scenario_config.py index fd2761de50f..d03fa7a49ee 100644 --- a/tools/run_tests/performance/scenario_config.py +++ b/tools/run_tests/performance/scenario_config.py @@ -903,17 +903,15 @@ class PythonAsyncIOLanguage: rpc_type='UNARY', client_type='ASYNC_CLIENT', server_type='ASYNC_SERVER', - server_language='python_asyncio', - async_server_threads=1, + server_language='c++', categories=[SMOKETEST, SCALABLE]) yield _ping_pong_scenario( 'python_asyncio_to_cpp_protobuf_sync_streaming_ping_pong', rpc_type='STREAMING', - client_type='SYNC_CLIENT', + client_type='ASYNC_CLIENT', server_type='ASYNC_SERVER', - server_language='python_asyncio', - async_server_threads=1) + server_language='c++') yield _ping_pong_scenario( 'python_asyncio_protobuf_async_unary_ping_pong_1MB',