This commit is contained in:
Matej Bačo
2025-02-19 15:37:43 +01:00
parent cd25a79694
commit 322b726196
+1 -1
View File
@@ -177,7 +177,7 @@ jobs:
attempt=0
success=0
while [ $attempt -lt $max_attempts ]; do
response=$(docker compose exec appwrite sh -c "curl -I \$_APP_EXECUTOR_HOST/health -H \"Authorization: Bearer \$_APP_EXECUTOR_SECRET\"")
response=$(command "docker compose exec appwrite sh -c \"curl -I \$_APP_EXECUTOR_HOST/health -H \\"Authorization: Bearer \$_APP_EXECUTOR_SECRET\\"\")" || echo '0')
if echo $response | grep -q '200 OK'; then
success=1
break