Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e7c4ee0

Browse files
committedJun 18, 2025··
increase timeout for vsphere connectivity to 5m
1 parent 31b54b7 commit e7c4ee0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎hack/e2e.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ fi
140140
# Ensure vSphere is reachable
141141
function wait_for_vsphere_reachable() {
142142
local n=0
143-
until [ $n -ge 30 ]; do
143+
until [ $n -ge 300 ]; do
144144
curl -s -v "https://${VSPHERE_SERVER}/sdk" --connect-timeout 2 -k && RET=$? || RET=$?
145145
if [[ "$RET" -eq 0 ]]; then
146146
break

0 commit comments

Comments
 (0)
Please sign in to comment.