diff options
author | Sree Kuchibhotla <sreek@google.com> | 2017-04-07 13:55:46 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2017-04-07 13:55:46 -0700 |
commit | dc0b8a60d3af630518ed1a27699430a2e9364a70 (patch) | |
tree | 878062d25b5c05427f740ad319ef7ada13e809fd | |
parent | 7b9f97bfb88359d070f66c7f2cb132622046af5b (diff) |
change cq_create to cq_create_for_next
-rw-r--r-- | test/cpp/microbenchmarks/bm_cq_multiple_threads.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/microbenchmarks/bm_cq_multiple_threads.cc b/test/cpp/microbenchmarks/bm_cq_multiple_threads.cc index 967c226ac7..33b77368ad 100644 --- a/test/cpp/microbenchmarks/bm_cq_multiple_threads.cc +++ b/test/cpp/microbenchmarks/bm_cq_multiple_threads.cc @@ -106,7 +106,7 @@ static void setup() { init_engine_vtable(); grpc_set_event_engine_test_only(&g_vtable); - g_cq = grpc_completion_queue_create(NULL); + g_cq = grpc_completion_queue_create_for_next(NULL); } static void BM_Cq_Throughput(benchmark::State& state) { |