aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-01-26 15:15:26 -0800
committerGravatar Vijay Pai <vpai@google.com>2016-01-26 15:15:26 -0800
commitbdf4acbbfb4aafbe12073808f3a4dfffe0aad283 (patch)
tree81a9a62f50b36d5ef28e546c3fadc2ee942ca20c /test
parent0f14209061f79d37f4f72801d66c2ab68dc69b7f (diff)
Properly state client name
Diffstat (limited to 'test')
-rw-r--r--test/cpp/qps/driver.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/qps/driver.cc b/test/cpp/qps/driver.cc
index 1c4f3d0e56..daeb33a0aa 100644
--- a/test/cpp/qps/driver.cc
+++ b/test/cpp/qps/driver.cc
@@ -191,7 +191,7 @@ std::unique_ptr<ScenarioResult> RunScenario(
auto* clients = new ClientData[num_clients];
for (size_t i = 0; i < num_clients; i++) {
gpr_log(GPR_INFO, "Starting client on %s (worker #%d)",
- workers[i].c_str(), i);
+ workers[i + num_servers].c_str(), i + num_servers);
clients[i].stub = WorkerService::NewStub(
CreateChannel(workers[i + num_servers], InsecureChannelCredentials()));
ClientArgs args;