Merge pull request #19077 from markdroth/test_health_check_service_fix

Fix bug in test health check service implementation.
pull/19082/head
Mark D. Roth 6 years ago committed by GitHub
commit 531c0bd230
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      test/cpp/end2end/test_health_check_service_impl.cc

@ -54,6 +54,7 @@ Status HealthCheckServiceImpl::Watch(
}
if (response.status() != last_state) {
writer->Write(response, ::grpc::WriteOptions());
last_state = response.status();
}
}
gpr_sleep_until(gpr_time_add(gpr_now(GPR_CLOCK_MONOTONIC),

Loading…
Cancel
Save