increase wait time

This commit is contained in:
Wells Bunker 2025-10-06 16:29:53 -06:00
parent 5ee997999d
commit 18048fd7e8
No known key found for this signature in database
GPG Key ID: DB16D6F2679B78FC
1 changed files with 2 additions and 2 deletions

View File

@ -204,7 +204,7 @@ jobs:
e2e_test:
name: End-to-End Test
runs-on: blacksmith-32vcpu-ubuntu-2404
timeout-minutes: 30
timeout-minutes: 40
environment: testing
steps:
- name: Checkout code
@ -317,7 +317,7 @@ jobs:
local service_name=$2
echo "Checking $service_name (localhost:$port)..."
for i in {1..60}; do
for i in {1..90}; do
if curl -s -o /dev/null http://localhost:$port; then
echo "✅ $service_name is ready (localhost:$port)"
return 0