aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/qps_worker.cc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@ubivpai.dls.corp.google.com>2016-07-08 10:33:10 -0700
committerGravatar Vijay Pai <vpai@ubivpai.dls.corp.google.com>2016-07-08 10:33:10 -0700
commitf782465fba11864293d858ba91d5e715fc481d7d (patch)
tree22326df37c6cb661fb09c7ba4a760ce5b8e7d7a2 /test/cpp/qps/qps_worker.cc
parentaa8bbeb6c6f006a630f18e305044e30bdc44b4f2 (diff)
Fix some shutdown errors related to CQ/join ordering
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 8456fde0ed..49ef52895c 100644
--- a/test/cpp/qps/qps_worker.cc
+++ b/test/cpp/qps/qps_worker.cc
@@ -128,6 +128,7 @@ class WorkerServiceImpl GRPC_FINAL : public WorkerService::Service {
ScopedProfile profile("qps_client.prof", false);
Status ret = RunClientBody(ctx, stream);
+ gpr_log(GPR_INFO, "RunClient: Returning");
return ret;
}
@@ -141,6 +142,7 @@ class WorkerServiceImpl GRPC_FINAL : public WorkerService::Service {
ScopedProfile profile("qps_server.prof", false);
Status ret = RunServerBody(ctx, stream);
+ gpr_log(GPR_INFO, "RunServer: Returning");
return ret;
}