Skip to content

Commit

Permalink
[xds e2e tests] apply test slowdown factor for does-not-exist timeout (
Browse files Browse the repository at this point in the history
…grpc#38111)

Closes grpc#38111

COPYBARA_INTEGRATE_REVIEW=grpc#38111 from markdroth:xds_e2e_timeout_test_flake 3e60646
PiperOrigin-RevId: 695864663
  • Loading branch information
markdroth authored and eugeneo committed Nov 12, 2024
1 parent 66e02f8 commit 61714df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/cpp/end2end/xds/xds_end2end_test_lib.cc
Original file line number Diff line number Diff line change
Expand Up @@ -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<char*>(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";
Expand Down

0 comments on commit 61714df

Please sign in to comment.