aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/qps_worker.cc
diff options
context:
space:
mode:
authorGravatar vjpai <vpai@google.com>2015-11-04 14:49:17 -0800
committerGravatar vjpai <vpai@google.com>2015-11-04 14:49:17 -0800
commitfba20c987d4eedaa039a828ec7c6ab3fed99ea7d (patch)
treea147ebf4d2352b4a2232e78b57d3b5347469cfd5 /test/cpp/qps/qps_worker.cc
parent1f6f02a6f428cc2d58f025337ed7aba0e0ae7c80 (diff)
Address some review comments about signal and restoring qps_test_with_poll
Make payloads respect the new defaults
Diffstat (limited to 'test/cpp/qps/qps_worker.cc')
-rw-r--r--test/cpp/qps/qps_worker.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/qps/qps_worker.cc b/test/cpp/qps/qps_worker.cc
index 8af6fd0f16..dc59eab7ef 100644
--- a/test/cpp/qps/qps_worker.cc
+++ b/test/cpp/qps/qps_worker.cc
@@ -199,8 +199,8 @@ class WorkerServiceImpl GRPC_FINAL : public WorkerService::Service {
return Status(StatusCode::INVALID_ARGUMENT, "");
}
ServerStatus status;
- status.set_port(server->Port());
- status.set_cores(server->Cores());
+ status.set_port(server->port());
+ status.set_cores(server->cores());
if (!stream->Write(status)) {
return Status(StatusCode::UNKNOWN, "");
}