From 7b306f25ceab051f8272239e33a18b185ab5a7cc Mon Sep 17 00:00:00 2001 From: Pasha Sviderski Date: Fri, 6 Mar 2026 21:12:23 +1000 Subject: [PATCH] fix: another attempt to fix flaky test container_crashes_on_startup_without_healthcheck --- test/e2e/service_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/e2e/service_test.go b/test/e2e/service_test.go index 99784efb..fbc91937 100644 --- a/test/e2e/service_test.go +++ b/test/e2e/service_test.go @@ -1414,7 +1414,7 @@ myapp.example.com { } }) - monitorPeriod := 2 * time.Second + monitorPeriod := 3 * time.Second spec := api.ServiceSpec{ Name: name, Mode: api.ServiceModeReplicated, @@ -1455,7 +1455,7 @@ myapp.example.com { }) // 1 second is sometimes not enough for Docker to detect the crash and start restarting the container. - monitorPeriod := 2 * time.Second + monitorPeriod := 3 * time.Second spec := api.ServiceSpec{ Name: name, Mode: api.ServiceModeReplicated,