aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/report.h
diff options
context:
space:
mode:
authorGravatar Siddharth Rakesh <sidrakesh@google.com>2015-06-22 12:21:57 -0700
committerGravatar Siddharth Rakesh <sidrakesh@google.com>2015-06-22 12:21:57 -0700
commit43645466681022f31bf2305b01bd7fab25369695 (patch)
treee6a2393f45b24099430efb7fdfe0a943a2bb64bc /test/cpp/qps/report.h
parentf39e7c0a0fb4c409c67e69e0d6450e7e1f8ccdab (diff)
Applied required modifications
Diffstat (limited to 'test/cpp/qps/report.h')
-rw-r--r--test/cpp/qps/report.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/cpp/qps/report.h b/test/cpp/qps/report.h
index 2ec7fe73f0..bba26b990c 100644
--- a/test/cpp/qps/report.h
+++ b/test/cpp/qps/report.h
@@ -109,7 +109,7 @@ class PerfDbReporter : public Reporter {
public:
PerfDbReporter(const string& name, const string& access_token, const string& test_name, const string& sys_info, const string& server_address)
: Reporter(name), access_token_(access_token), test_name_(test_name), sys_info_(sys_info) {
- perfDbClient.init(grpc::CreateChannel(server_address, grpc::InsecureCredentials(), ChannelArguments()));
+ perfDbClient_.init(grpc::CreateChannel(server_address, grpc::InsecureCredentials(), ChannelArguments()));
}
~PerfDbReporter() { SendData(); };
@@ -118,11 +118,11 @@ class PerfDbReporter : public Reporter {
std::string access_token_;
std::string test_name_;
std::string sys_info_;
- void ReportQPS(const ScenarioResult& result) const GRPC_OVERRIDE;
- void ReportQPSPerCore(const ScenarioResult& result) const GRPC_OVERRIDE;
- void ReportLatency(const ScenarioResult& result) const GRPC_OVERRIDE;
- void ReportTimes(const ScenarioResult& result) const GRPC_OVERRIDE;
- void SendData() const;
+ void ReportQPS(const ScenarioResult& result) GRPC_OVERRIDE;
+ void ReportQPSPerCore(const ScenarioResult& result) GRPC_OVERRIDE;
+ void ReportLatency(const ScenarioResult& result) GRPC_OVERRIDE;
+ void ReportTimes(const ScenarioResult& result) GRPC_OVERRIDE;
+ void SendData();
};
} // namespace testing