Increase health check time limit to allow boot

This commit is contained in:
Syed Ali Shahbaz
2023-09-28 16:48:04 +04:00
committed by GitHub
parent bcdff6eeb0
commit 4870434673

View File

@@ -131,7 +131,7 @@ jobs:
server_pid=$!
for i in {1..60}; do
for i in {1..600}; do
echo "Checking server health ($i/60)..."
response=$(curl --silent --fail --write-out "%{http_code}" http://localhost:3000/auth/login)
if [[ "$response" == "200" ]]; then