From 22a2a8a2ed23e7dc8562a2e776c48378e99389ad Mon Sep 17 00:00:00 2001 From: Sreekanth Date: Fri, 17 Jan 2025 17:58:44 +0530 Subject: [PATCH] Debugging test failure - increase timeout Signed-off-by: Sreekanth --- test/fixtures/expect.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/fixtures/expect.go b/test/fixtures/expect.go index 996d762bd..9398fa4fc 100644 --- a/test/fixtures/expect.go +++ b/test/fixtures/expect.go @@ -120,7 +120,7 @@ func (t *Expect) VertexPodsRunning() *Expect { func (t *Expect) MonoVertexPodsRunning() *Expect { t.t.Helper() - if err := WaitForMonoVertexPodRunning(t.kubeClient, t.monoVertexClient, Namespace, t.monoVertex.Name, 2*time.Minute); err != nil { + if err := WaitForMonoVertexPodRunning(t.kubeClient, t.monoVertexClient, Namespace, t.monoVertex.Name, 5*time.Minute); err != nil { t.t.Fatalf("Expected mono vertex %q pod running: %v", t.monoVertex.Name, err) } return t