We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a2abf5 commit 9a21264Copy full SHA for 9a21264
1 file changed
dev/deployment/devspace/setup-rest-integration.sh
@@ -129,7 +129,8 @@ site_ready=false
129
machines_ready=false
130
machine_count=0
131
fresh_cycle=false
132
-for attempt in {1..60}; do
+# A clean cluster may need a second three-minute inventory cycle after Core discovers machines.
133
+for attempt in {1..90}; do
134
site_ready=false
135
136
@@ -184,7 +185,7 @@ for attempt in {1..60}; do
184
185
"${site_id}" "${machine_count}"
186
break
187
fi
- if [[ "${attempt}" == "60" ]]; then
188
+ if [[ "${attempt}" == "90" ]]; then
189
printf 'REST integration verification failed: site_ready=%s machines_ready=%s machines=%s fresh_cycle=%s\n' \
190
"${site_ready}" "${machines_ready}" "${machine_count}" "${fresh_cycle}" >&2
191
exit 1
0 commit comments