File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 141
141
function wait_for_vsphere_reachable() {
142
142
local n=0
143
143
until [ $n -ge 30 ]; do
144
- curl " https://${VSPHERE_SERVER} " --connect-timeout 2 -k && RET=$? || RET=$?
144
+ curl -s -v " https://${VSPHERE_SERVER} /sdk " --connect-timeout 2 -k && RET=$? || RET=$?
145
145
if [[ " $RET " -eq 0 ]]; then
146
146
break
147
147
fi
148
148
n=$(( n + 1 ))
149
+ echo " Failed to reach https://${VSPHERE_SERVER} /sdk. Retrying in 1s ($n /30)"
149
150
sleep 1
150
151
done
151
152
return " $RET "
@@ -156,7 +157,7 @@ if [[ ! "${GINKGO_FOCUS:-}" =~ $RE_VCSIM ]]; then
156
157
fi
157
158
158
159
# Make tests run in-parallel
159
- export GINKGO_NODES=5
160
+ export GINKGO_NODES=4
160
161
161
162
# Only run the boskos/check for IPAM when we need them (not for vcsim)
162
163
if [[ ! " ${GINKGO_FOCUS:- } " =~ $RE_VCSIM ]]; then
You can’t perform that action at this time.
0 commit comments