Fix internal build breakage from #16351.

pull/16574/head
Mark D. Roth 6 years ago
parent 6d2c8f8072
commit 7975c6ad98
  1. 8
      src/cpp/server/health/default_health_check_service.cc

@ -289,13 +289,13 @@ void DefaultHealthCheckService::HealthCheckServiceImpl::CheckCallHandler::
grpc::Status status = Status::OK; grpc::Status status = Status::OK;
ByteBuffer response; ByteBuffer response;
if (!service_->DecodeRequest(request_, &service_name)) { if (!service_->DecodeRequest(request_, &service_name)) {
status = Status(INVALID_ARGUMENT, ""); status = Status(StatusCode::INVALID_ARGUMENT, "");
} else { } else {
ServingStatus serving_status = database_->GetServingStatus(service_name); ServingStatus serving_status = database_->GetServingStatus(service_name);
if (serving_status == NOT_FOUND) { if (serving_status == NOT_FOUND) {
status = Status(StatusCode::NOT_FOUND, "service name unknown"); status = Status(StatusCode::NOT_FOUND, "service name unknown");
} else if (!service_->EncodeResponse(serving_status, &response)) { } else if (!service_->EncodeResponse(serving_status, &response)) {
status = Status(INTERNAL, ""); status = Status(StatusCode::INTERNAL, "");
} }
} }
// Send response. // Send response.
@ -389,7 +389,7 @@ void DefaultHealthCheckService::HealthCheckServiceImpl::WatchCallHandler::
CallableTag(std::bind(&WatchCallHandler::OnFinishDone, this, CallableTag(std::bind(&WatchCallHandler::OnFinishDone, this,
std::placeholders::_1, std::placeholders::_2), std::placeholders::_1, std::placeholders::_2),
std::move(self)); std::move(self));
stream_.Finish(Status(INVALID_ARGUMENT, ""), &on_finish_done_); stream_.Finish(Status(StatusCode::INVALID_ARGUMENT, ""), &on_finish_done_);
call_state_ = FINISH_CALLED; call_state_ = FINISH_CALLED;
return; return;
} }
@ -431,7 +431,7 @@ void DefaultHealthCheckService::HealthCheckServiceImpl::WatchCallHandler::
CallableTag(std::bind(&WatchCallHandler::OnFinishDone, this, CallableTag(std::bind(&WatchCallHandler::OnFinishDone, this,
std::placeholders::_1, std::placeholders::_2), std::placeholders::_1, std::placeholders::_2),
std::move(self)); std::move(self));
stream_.Finish(Status(INTERNAL, ""), &on_finish_done_); stream_.Finish(Status(StatusCode::INTERNAL, ""), &on_finish_done_);
return; return;
} }
next_ = CallableTag(std::bind(&WatchCallHandler::OnSendHealthDone, this, next_ = CallableTag(std::bind(&WatchCallHandler::OnSendHealthDone, this,

Loading…
Cancel
Save