aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop/stress_interop_client.cc
diff options
context:
space:
mode:
authorGravatar Sree Kuchibhotla <sreek@google.com>2015-10-20 16:45:52 -0700
committerGravatar Sree Kuchibhotla <sreek@google.com>2015-10-20 16:45:52 -0700
commitac7edec71f2d4d076bc43bc5cef1abc44578a8fd (patch)
tree0248ca75eb24e41586a1c4839f3288f8a43bf4bc /test/cpp/interop/stress_interop_client.cc
parent2bc3ac30322efd14919653544bbbd4da5819b1a1 (diff)
Add an option to reuse the TestService::Stub in interop client class
Diffstat (limited to 'test/cpp/interop/stress_interop_client.cc')
-rw-r--r--test/cpp/interop/stress_interop_client.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/interop/stress_interop_client.cc b/test/cpp/interop/stress_interop_client.cc
index d1d0b0d4f3..5ade60057b 100644
--- a/test/cpp/interop/stress_interop_client.cc
+++ b/test/cpp/interop/stress_interop_client.cc
@@ -92,7 +92,7 @@ StressTestInteropClient::StressTestInteropClient(
// that won't work with InsecureCredentials()
std::shared_ptr<Channel> channel(
CreateChannel(server_address, InsecureCredentials()));
- interop_client_.reset(new InteropClient(channel));
+ interop_client_.reset(new InteropClient(channel, false));
}
void StressTestInteropClient::MainLoop() {