Skip to content

Commit

Permalink
Update hack/e2e.sh
Browse files Browse the repository at this point in the history
Co-authored-by: Christian Schlotter <[email protected]>
  • Loading branch information
sbueringer and chrischdi authored Jun 6, 2024
1 parent bcaaec1 commit 75f0e29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hack/e2e.sh
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ if [[ ! "${GINKGO_FOCUS:-}" =~ $RE_VCSIM ]]; then
function wait_for_vpn_up() {
local n=0
until [ $n -ge 30 ]; do
curl "https://${VSPHERE_SERVER}" -k -v && RET=$? || RET=$?
curl "https://${VSPHERE_SERVER}" --connect-timeout 2 -k -v && RET=$? || RET=$?
if [[ "$RET" -eq 0 ]]; then
break
fi
Expand Down

0 comments on commit 75f0e29

Please sign in to comment.