This commit is contained in:
Wells Bunker 2025-09-26 16:11:11 -06:00
parent 4aec5f1c92
commit e702b4ee56
No known key found for this signature in database
GPG Key ID: DB16D6F2679B78FC
1 changed files with 1 additions and 1 deletions

View File

@ -316,7 +316,7 @@ jobs:
echo "Checking $service_name (localhost:$port)..."
for i in {1..60}; do
if curl -f -s -o /dev/null http://localhost:$port; then
if curl -s -o /dev/null http://localhost:$port; then
echo "✅ $service_name is ready (localhost:$port)"
return 0
fi