set timeout to a minute to see if this resolves flakes

This commit is contained in:
Kevin Hannon 2024-09-18 09:03:34 -04:00
parent 6f1583990a
commit 5358be5252

View File

@ -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"))
})
/*