We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6bb6e4f commit 5b87b89Copy full SHA for 5b87b89
1 file changed
scripts/validate_model_quota.sh
@@ -185,16 +185,19 @@ check_fallback_regions() {
185
for region in "${RECOMMENDED_REGIONS[@]}"; do
186
echo " - $region"
187
done
188
+ prompt_yes_no "❓ Do you want to proceed by selecting one of these regions? (y/n): " || {
189
+ ask_for_location
190
+ return
191
+ }
192
fi
193
echo -e "👉 You can manually choose one of the recommended fallback regions for deployment."
194
else
195
echo -e "\n❌ ERROR: No region has sufficient quota."
- fi
-
- prompt_yes_no "❓ Proceed anyway? (y/n): " || {
196
ask_for_location
197
return
- }
198
+ fi
199
+
200
201
}
202
203
# ---------- Parse Inputs ----------
0 commit comments