aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2018-10-17 09:29:05 -0700
committerGravatar Mark D. Roth <roth@google.com>2018-10-17 09:29:05 -0700
commit231b8639220dc6204ad153469091fff56a730481 (patch)
tree4b49a9bb42cacad2767ed68ca691836b3a56e9cf /src
parentc68489805557253146aee59459103ce269ede9fe (diff)
address clang-tidy problems
Diffstat (limited to 'src')
-rw-r--r--src/cpp/server/health/default_health_check_service.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/cpp/server/health/default_health_check_service.cc b/src/cpp/server/health/default_health_check_service.cc
index d7e1356bde..0c03fdf17a 100644
--- a/src/cpp/server/health/default_health_check_service.cc
+++ b/src/cpp/server/health/default_health_check_service.cc
@@ -72,7 +72,8 @@ void DefaultHealthCheckService::RegisterCallHandler(
std::unique_lock<std::mutex> lock(mu_);
ServiceData& service_data = services_map_[service_name];
service_data.AddCallHandler(handler /* copies ref */);
- handler->SendHealth(std::move(handler), service_data.GetServingStatus());
+ HealthCheckServiceImpl::CallHandler* h = handler.get();
+ h->SendHealth(std::move(handler), service_data.GetServingStatus());
}
void DefaultHealthCheckService::UnregisterCallHandler(
@@ -115,7 +116,7 @@ void DefaultHealthCheckService::ServiceData::AddCallHandler(
void DefaultHealthCheckService::ServiceData::RemoveCallHandler(
std::shared_ptr<HealthCheckServiceImpl::CallHandler> handler) {
- call_handlers_.erase(std::move(handler));
+ call_handlers_.erase(handler);
}
//