Skip to content
Snippets Groups Projects
Commit bdf4acbb authored by Vijay Pai's avatar Vijay Pai
Browse files

Properly state client name

parent 0f142090
No related branches found
No related tags found
No related merge requests found
...@@ -191,7 +191,7 @@ std::unique_ptr<ScenarioResult> RunScenario( ...@@ -191,7 +191,7 @@ std::unique_ptr<ScenarioResult> RunScenario(
auto* clients = new ClientData[num_clients]; auto* clients = new ClientData[num_clients];
for (size_t i = 0; i < num_clients; i++) { for (size_t i = 0; i < num_clients; i++) {
gpr_log(GPR_INFO, "Starting client on %s (worker #%d)", 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( clients[i].stub = WorkerService::NewStub(
CreateChannel(workers[i + num_servers], InsecureChannelCredentials())); CreateChannel(workers[i + num_servers], InsecureChannelCredentials()));
ClientArgs args; ClientArgs args;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment