Skip to content

Commit 2647848

Browse files
cfergeaugbraad
authored andcommitted
Issue #413 Wait for ssh for 10 seconds
4 seconds might be a bit short on slow machines. This fixes #413
1 parent 0bb7290 commit 2647848

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/crc/cluster/cluster.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ func WaitForSsh(driver drivers.Driver) error {
1919
return nil
2020
}
2121

22-
return errors.RetryAfter(4, checkSshConnectivity, time.Second)
22+
return errors.RetryAfter(10, checkSshConnectivity, time.Second)
2323
}
2424

2525
// CheckCertsValidity checks if the cluster certs have expired

0 commit comments

Comments
 (0)