From 1ffcc21450e64add4b3b11a476f55fdd614071d7 Mon Sep 17 00:00:00 2001 From: Victor Lyuboslavsky Date: Wed, 7 May 2025 16:17:22 -0500 Subject: [PATCH] Reducing "waiting for mysql" timeout to 1 minute to speed up dev feedback. (#28935) I'm seeing it takes ~10 seconds to MySQL to come up, so 1 minute should be plenty. 5 minutes was too long to wait. --- .github/workflows/test-go.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-go.yaml b/.github/workflows/test-go.yaml index 0e22e1b104..26ec1957ff 100644 --- a/.github/workflows/test-go.yaml +++ b/.github/workflows/test-go.yaml @@ -157,7 +157,7 @@ jobs: # Function to wait for MySQL with timeout wait_for_mysql() { local container_name=$1 - local timeout_seconds=300 # 5 minutes + local timeout_seconds=60 # 1 minute local start_time=$(date +%s) local attempt_logs=""