diff options
author | Sree Kuchibhotla <sreek@google.com> | 2017-07-11 13:55:58 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2017-07-11 13:55:58 -0700 |
commit | eede875bdb62c1bf78ce85d00ff92db40b1dd7a3 (patch) | |
tree | 8d5e75c469531338caf0caa254fc0a44033aa3db /test | |
parent | 809fbfdc03e484f81887f88fdddc0289ba3fab49 (diff) |
Disable health check service in async end2end tests as it is causing flakes in mac
Diffstat (limited to 'test')
-rw-r--r-- | test/cpp/end2end/async_end2end_test.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/cpp/end2end/async_end2end_test.cc b/test/cpp/end2end/async_end2end_test.cc index a2a6e36709..7b78071217 100644 --- a/test/cpp/end2end/async_end2end_test.cc +++ b/test/cpp/end2end/async_end2end_test.cc @@ -1752,7 +1752,9 @@ std::vector<TestScenario> CreateTestScenarios(bool test_disable_blocking, messages.push_back(big_msg); } - for (auto health_check_service : {false, true}) { + // TODO (sreek) Renable tests with health check service after the issue + // https://github.com/grpc/grpc/issues/11223 is resolved + for (auto health_check_service : {false}) { for (auto cred = credentials_types.begin(); cred != credentials_types.end(); ++cred) { for (auto msg = messages.begin(); msg != messages.end(); msg++) { |