Skip to content

Commit 1fef492

Browse files
authored
check for installation updates every second instead of every 5 seconds (#601)
1 parent 8ebab6d commit 1fef492

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/kubeutils/kubeutils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ func WaitForService(ctx context.Context, cli client.Client, ns, name string) err
104104
}
105105

106106
func WaitForInstallation(ctx context.Context, cli client.Client, writer *spinner.MessageWriter) error {
107-
backoff := wait.Backoff{Steps: 60, Duration: 5 * time.Second, Factor: 1.0, Jitter: 0.1}
107+
backoff := wait.Backoff{Steps: 60 * 5, Duration: time.Second, Factor: 1.0, Jitter: 0.1}
108108
var lasterr error
109109

110110
embeddedclusterv1beta1.AddToScheme(cli.Scheme())

0 commit comments

Comments
 (0)