From 18048fd7e8b1b299316e2756e77d9b9e8be3c5ed Mon Sep 17 00:00:00 2001 From: Wells Bunker Date: Mon, 6 Oct 2025 16:29:53 -0600 Subject: [PATCH] increase wait time --- .github/workflows/lint-build-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-build-test.yml b/.github/workflows/lint-build-test.yml index cc16392a5..c02adc97c 100644 --- a/.github/workflows/lint-build-test.yml +++ b/.github/workflows/lint-build-test.yml @@ -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