From e6acab8c5ac9d1abdaddce70a49ffe2938329806 Mon Sep 17 00:00:00 2001 From: sivchari Date: Thu, 6 Aug 2026 14:16:00 +0900 Subject: [PATCH] Fix flaky HTTPRouteMixedProtocols e2e test Signed-off-by: sivchari --- test/e2e/tests/httproute_mixed_protocols.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/tests/httproute_mixed_protocols.go b/test/e2e/tests/httproute_mixed_protocols.go index f6cb32ed75..c8728be557 100644 --- a/test/e2e/tests/httproute_mixed_protocols.go +++ b/test/e2e/tests/httproute_mixed_protocols.go @@ -85,7 +85,8 @@ var HTTPRouteMixedProtocols = suite.ConformanceTest{ } for _, res := range responses { - http.MakeRequestAndExpectEventuallyConsistentResponse(t, suite.RoundTripper, suite.TimeoutConfig, gwAddr, res) + req := http.MakeRequest(t, &res, gwAddr, "HTTP", "http") + http.WaitForConsistentResponse(t, suite.RoundTripper, req, res, 1, suite.TimeoutConfig.MaxTimeToConsistency) } }, }