Skip to content

Commit 6b44d71

Browse files
committed
increase timeout
On-behalf-of: SAP <[email protected]> Signed-off-by: Simon Bein <[email protected]>
1 parent 97da797 commit 6b44d71

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/utils/wait.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func WaitForPods(t *testing.T, ctx context.Context, client ctrlruntimeclient.Cli
3232

3333
t.Log("Waiting for pods to be available…")
3434

35-
err := wait.PollUntilContextTimeout(ctx, 500*time.Millisecond, 3*time.Minute, false, func(ctx context.Context) (done bool, err error) {
35+
err := wait.PollUntilContextTimeout(ctx, 500*time.Millisecond, 5*time.Minute, false, func(ctx context.Context) (done bool, err error) {
3636
pods := corev1.PodList{}
3737
if err := client.List(ctx, &pods, listOpts...); err != nil {
3838
return false, err

0 commit comments

Comments
 (0)