chore: update prod check loops
All checks were successful
Deploy to Staging / Build Images (push) Successful in 29s
Deploy to Staging / Deploy to Staging (push) Successful in 36s
Deploy to Staging / Verify Staging (push) Successful in 2m19s
Deploy to Staging / Notify Staging Ready (push) Successful in 8s
Deploy to Staging / Notify Staging Failure (push) Has been skipped
All checks were successful
Deploy to Staging / Build Images (push) Successful in 29s
Deploy to Staging / Deploy to Staging (push) Successful in 36s
Deploy to Staging / Verify Staging (push) Successful in 2m19s
Deploy to Staging / Notify Staging Ready (push) Successful in 8s
Deploy to Staging / Notify Staging Failure (push) Has been skipped
This commit is contained in:
@@ -308,7 +308,7 @@ jobs:
|
||||
docker logs mvp-backend-$TARGET_STACK --tail 100
|
||||
exit 1
|
||||
fi
|
||||
echo "Attempt $i/24: Backend not ready, waiting 10s..."
|
||||
echo "Attempt $i/24: Backend not ready, waiting 5s..."
|
||||
sleep 5
|
||||
done
|
||||
|
||||
@@ -316,10 +316,10 @@ jobs:
|
||||
run: |
|
||||
REQUIRED_FEATURES='["admin","auth","onboarding","vehicles","documents","fuel-logs","stations","maintenance","platform","notifications","user-profile","user-preferences","user-export"]'
|
||||
|
||||
for i in 1 2 3 4 5 6; do
|
||||
for i in $(seq 1 24); do
|
||||
RESPONSE=$(curl -sf https://motovaultpro.com/api/health 2>/dev/null) || {
|
||||
echo "Attempt $i/6: Connection failed, waiting 10s..."
|
||||
sleep 10
|
||||
echo "Attempt $i/6: Connection failed, waiting 5s..."
|
||||
sleep 5
|
||||
continue
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user