From 61714df9113460652f5171ce098ee46e6968ca48 Mon Sep 17 00:00:00 2001 From: "Mark D. Roth" Date: Tue, 12 Nov 2024 14:06:50 -0800 Subject: [PATCH] [xds e2e tests] apply test slowdown factor for does-not-exist timeout (#38111) Closes #38111 COPYBARA_INTEGRATE_REVIEW=https://github.com/grpc/grpc/pull/38111 from markdroth:xds_e2e_timeout_test_flake 3e60646e15ae48962b202b8d349e29855b959fc1 PiperOrigin-RevId: 695864663 --- test/cpp/end2end/xds/xds_end2end_test_lib.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cpp/end2end/xds/xds_end2end_test_lib.cc b/test/cpp/end2end/xds/xds_end2end_test_lib.cc index b743bbedc0da9..cf764c8cb6599 100644 --- a/test/cpp/end2end/xds/xds_end2end_test_lib.cc +++ b/test/cpp/end2end/xds/xds_end2end_test_lib.cc @@ -502,7 +502,7 @@ void XdsEnd2endTest::InitClient( if (xds_resource_does_not_exist_timeout_ms > 0) { xds_channel_args_to_add_.emplace_back(grpc_channel_arg_integer_create( const_cast(GRPC_ARG_XDS_RESOURCE_DOES_NOT_EXIST_TIMEOUT_MS), - xds_resource_does_not_exist_timeout_ms)); + xds_resource_does_not_exist_timeout_ms * grpc_test_slowdown_factor())); } if (!lb_expected_authority.empty()) { constexpr char authority_const[] = "localhost:%d";