aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/client
diff options
context:
space:
mode:
authorGravatar Guantao Liu <guantaol@google.com>2018-10-01 18:17:10 -0700
committerGravatar Guantao Liu <guantaol@google.com>2018-10-01 18:21:23 -0700
commit18ba787392a9c860710650c0e01eacaed0716991 (patch)
tree6ae6b93bc928980c551f780b9ef4b2d0365f22fc /test/cpp/client
parenta46ac13db342ac4ab41e200fe51d7b5ee1749546 (diff)
Fix the unused result error in client_channel_stress_test.cc.
Diffstat (limited to 'test/cpp/client')
-rw-r--r--test/cpp/client/client_channel_stress_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/client/client_channel_stress_test.cc b/test/cpp/client/client_channel_stress_test.cc
index 826907ae4e..976eeb6aea 100644
--- a/test/cpp/client/client_channel_stress_test.cc
+++ b/test/cpp/client/client_channel_stress_test.cc
@@ -245,7 +245,7 @@ class ClientChannelStressTest {
EchoResponse response;
{
std::lock_guard<std::mutex> lock(stub_mutex_);
- stub_->Echo(&context, request, &response);
+ Status status = stub_->Echo(&context, request, &response);
}
}
gpr_log(GPR_INFO, "Finish sending requests.");