We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97da797 commit cdd36dbCopy full SHA for cdd36db
test/utils/wait.go
@@ -71,7 +71,7 @@ func WaitForObject(t *testing.T, ctx context.Context, client ctrlruntimeclient.C
71
t.Helper()
72
t.Logf("Waiting for %T to be available…", obj)
73
74
- err := wait.PollUntilContextTimeout(ctx, 500*time.Millisecond, 3*time.Minute, false, func(ctx context.Context) (done bool, err error) {
+ err := wait.PollUntilContextTimeout(ctx, 500*time.Millisecond, 10*time.Minute, false, func(ctx context.Context) (done bool, err error) {
75
err = client.Get(ctx, key, obj)
76
return err == nil, nil
77
})
0 commit comments