From 1c0c33ec497ecece44e52794655827e4d36a1e45 Mon Sep 17 00:00:00 2001 From: Samuel K Date: Mon, 4 May 2026 12:48:02 -0500 Subject: [PATCH] fix(e2e): increase TimeoutShort from 2min to 3min E2E tests that build Docker images with apt-get install regularly exceed the 2-minute timeout on GitHub Actions runners due to slow Ubuntu mirror response times. This caused consistent CI failures on main across 4 consecutive commits (d2ca8330b through ba9fbb925) even though the underlying code was correct. --- e2e/framework/timeouts.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/framework/timeouts.go b/e2e/framework/timeouts.go index 2eab3e211..bfba3f670 100644 --- a/e2e/framework/timeouts.go +++ b/e2e/framework/timeouts.go @@ -11,7 +11,7 @@ func TimeoutShort() time.Duration { if runtime.GOOS == osWindows { return 10 * time.Minute } - return 2 * time.Minute + return 3 * time.Minute } func TimeoutModerate() time.Duration {