aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/qps_worker.cc
diff options
context:
space:
mode:
authorGravatar vjpai <vpai@google.com>2016-01-26 17:51:35 -0800
committerGravatar vjpai <vpai@google.com>2016-01-26 17:51:35 -0800
commita00f998089a641ed7cc059eb5d4ce52734ba2e3e (patch)
treefcf26e702b23f9b545e23d2ca2775d43900b4c4f /test/cpp/qps/qps_worker.cc
parentf955e54799968c9aabb1f860549f88458e8b34a6 (diff)
Actually create async generic server
Diffstat (limited to 'test/cpp/qps/qps_worker.cc')
-rw-r--r--test/cpp/qps/qps_worker.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/cpp/qps/qps_worker.cc b/test/cpp/qps/qps_worker.cc
index c0276d05b3..0bacc11b23 100644
--- a/test/cpp/qps/qps_worker.cc
+++ b/test/cpp/qps/qps_worker.cc
@@ -89,6 +89,8 @@ static std::unique_ptr<Server> CreateServer(const ServerConfig& config) {
return CreateSynchronousServer(config);
case ServerType::ASYNC_SERVER:
return CreateAsyncServer(config);
+ case ServerType::ASYNC_GENERIC_SERVER:
+ return CreateAsyncGenericServer(config);
default:
abort();
}