Skip to content
Snippets Groups Projects
Commit 1941c736 authored by Sree Kuchibhotla's avatar Sree Kuchibhotla Committed by GitHub
Browse files

Merge pull request #11754 from sreecha/disable_hcs

Disable health check service in async end2end tests as it is causing flakes on mac
parents 9a836ca3 eede875b
No related branches found
No related tags found
No related merge requests found
...@@ -1752,7 +1752,9 @@ std::vector<TestScenario> CreateTestScenarios(bool test_disable_blocking, ...@@ -1752,7 +1752,9 @@ std::vector<TestScenario> CreateTestScenarios(bool test_disable_blocking,
messages.push_back(big_msg); 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(); for (auto cred = credentials_types.begin(); cred != credentials_types.end();
++cred) { ++cred) {
for (auto msg = messages.begin(); msg != messages.end(); msg++) { for (auto msg = messages.begin(); msg != messages.end(); msg++) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment