From 9302f30ba7ca7f8673c2bf6414037de37bab058a Mon Sep 17 00:00:00 2001 From: Shag Date: Fri, 22 May 2026 13:22:22 +0400 Subject: [PATCH] fix: derive HINDSIGHT_API_HEALTH_URL default from HINDSIGHT_API_PORT --- docker/standalone/start-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/standalone/start-all.sh b/docker/standalone/start-all.sh index b5f163e6c..ebbca6d70 100755 --- a/docker/standalone/start-all.sh +++ b/docker/standalone/start-all.sh @@ -156,7 +156,7 @@ PIDS=() # Start API if enabled if [ "$ENABLE_API" = "true" ]; then cd /app/api - API_HEALTH_URL="${HINDSIGHT_API_HEALTH_URL:-http://localhost:8888/health}" + API_HEALTH_URL="${HINDSIGHT_API_HEALTH_URL:-http://localhost:${HINDSIGHT_API_PORT:-8888}/health}" API_STARTUP_WAIT_SECONDS="${HINDSIGHT_API_STARTUP_WAIT_SECONDS:-300}" # Run API directly - Python's PYTHONUNBUFFERED=1 handles output buffering