aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/qps_worker.cc
diff options
context:
space:
mode:
authorGravatar Moiz Haidry <mhaidry@google.com>2018-11-05 16:09:34 -0800
committerGravatar Moiz Haidry <mhaidry@google.com>2018-11-07 10:08:51 -0800
commit1303ec7b53b9a6916b0cb3ac8dfe8ddcef0f6736 (patch)
tree8b03f4cd787c65b42e98c4c6fc1159dc39cbfbba /test/cpp/qps/qps_worker.cc
parent7a08e3b679e5a63f30fda6b426d57146f9984092 (diff)
Added benchmarks for Callback based Unary 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 d97d95d8f3..23fe72316a 100644
--- a/test/cpp/qps/qps_worker.cc
+++ b/test/cpp/qps/qps_worker.cc
@@ -79,6 +79,8 @@ static std::unique_ptr<Server> CreateServer(const ServerConfig& config) {
return CreateAsyncServer(config);
case ServerType::ASYNC_GENERIC_SERVER:
return CreateAsyncGenericServer(config);
+ case ServerType::CALLBACK_SERVER:
+ return CreateCallbackServer(config);
default:
abort();
}