From bb861e469f7d875f2c5d6ca65d396fda043b00ce Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marek=20Jasi=C5=84ski?= Date: Sun, 14 Jun 2026 15:02:27 +0200 Subject: [PATCH] chore(stage): increase startup wait timeout to prevent false-positive warnings --- run-stage.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/run-stage.sh b/run-stage.sh index 1834e9b..d5bc6ec 100755 --- a/run-stage.sh +++ b/run-stage.sh @@ -82,7 +82,7 @@ dotnet ef database update --project src/NexusReader.Data --startup-project src/N # 7. Wait for Web Application to respond echo "⏳ Waiting for Web Application to start on http://localhost:$WEB_PORT..." -MAX_WEB_ATTEMPTS=20 +MAX_WEB_ATTEMPTS=45 web_attempt=0 until curl -s -f "http://localhost:$WEB_PORT" >/dev/null; do sleep 2