Do not block deploy on AI service health
This commit is contained in:
+1
-2
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user