aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/report.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-08-27 21:04:56 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-08-27 21:04:56 -0700
commit89d56103eb9de65e148f1d839a686e591763d73e (patch)
tree79b02327d46c9e34afcace37c222e07cdbd83cc9 /test/cpp/qps/report.h
parentee8d6a381adf3eaedf0c5d92aca7bd5b4b645de3 (diff)
parent730055d9628ca6d27e46d7c6716148a8d93bf95d (diff)
Merge pull request #3104 from yang-g/create_channel
Create channel API change
Diffstat (limited to 'test/cpp/qps/report.h')
-rw-r--r--test/cpp/qps/report.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/qps/report.h b/test/cpp/qps/report.h
index 620abade39..5914fc4e30 100644
--- a/test/cpp/qps/report.h
+++ b/test/cpp/qps/report.h
@@ -116,8 +116,8 @@ class PerfDbReporter : public Reporter {
test_name_(test_name),
sys_info_(sys_info),
tag_(tag) {
- perf_db_client_.init(grpc::CreateChannel(
- server_address, grpc::InsecureCredentials(), ChannelArguments()));
+ perf_db_client_.init(
+ grpc::CreateChannel(server_address, grpc::InsecureCredentials()));
}
~PerfDbReporter() GRPC_OVERRIDE { SendData(); };