From 5358be525243572165ee423d55f97afcc0aa94c2 Mon Sep 17 00:00:00 2001 From: Kevin Hannon Date: Wed, 18 Sep 2024 09:03:34 -0400 Subject: [PATCH] set timeout to a minute to see if this resolves flakes --- test/e2e/common/node/containers.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/common/node/containers.go b/test/e2e/common/node/containers.go index 0df79bfdc81..00bc30bc420 100644 --- a/test/e2e/common/node/containers.go +++ b/test/e2e/common/node/containers.go @@ -18,6 +18,7 @@ package node import ( "context" + "time" "github.com/onsi/gomega" @@ -50,7 +51,7 @@ var _ = SIGDescribe("Containers", func() { // The agnhost's image default entrypoint / args are: "/agnhost pause" // which will print out "Paused". - gomega.Eventually(ctx, pollLogs, 3, framework.Poll).Should(gomega.ContainSubstring("Paused")) + gomega.Eventually(ctx, pollLogs, time.Minute, framework.Poll).Should(gomega.ContainSubstring("Paused")) }) /*