This commit is contained in:
Ethan Mosbaugh 2025-06-05 10:33:18 -04:00 committed by GitHub
commit f7073239fa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -60,7 +60,7 @@ spec:
echo "Waiting for service at $url..."
while [ $attempt -le $max_attempts ]; do
if wget -q --spider "$url" >/dev/null 2>&1; then
if wget -q -O - "$url" >/dev/null 2>&1; then
echo "Service at $url is up!"
return 0
fi