Do not block deploy on AI service health

This commit is contained in:
2026-04-02 14:52:44 +02:00
parent f7efad7337
commit a22ce08913
2 changed files with 22 additions and 26 deletions
+1 -2
View File
@@ -62,9 +62,8 @@ fi
ai_status="$(compose ps ai-service --format '{{.State}}' 2>/dev/null | head -n 1 | tr '[:upper:]' '[:lower:]')"
if [ "$ai_status" != "running" ]; then
echo "AI service is not healthy after deploy (state: ${ai_status:-unknown})."
echo "AI service is not healthy after deploy (state: ${ai_status:-unknown}). Continuing because AI is not a deploy gate for the core app."
compose logs --tail=200 ai-service || true
exit 1
fi
if [ -n "${APP_PUBLIC_BASE_URL:-}" ]; then