feat/Update_Controllers_to_Allow_for_Premium_Membership

This commit is contained in:
cesnimda
2026-08-03 09:17:28 +02:00
parent de937d25dc
commit c3f4a57195
187 changed files with 26062 additions and 991 deletions
+5 -5
View File
@@ -154,8 +154,8 @@ jobs:
APP_COMMIT_SHA=${{ github.sha }} \
APP_BUILD_STAMP="$(date -u +'%Y-%m-%d %H:%M UTC')" \
./deploy/deploy.sh
docker compose ps
AI_CONTAINER_ID="$(docker compose ps -q ai-service)"
docker compose -f docker-compose.yml ps
AI_CONTAINER_ID="$(docker compose -f docker-compose.yml ps -q ai-service)"
if [ -z "$AI_CONTAINER_ID" ]; then
echo "AI service container id could not be resolved after deploy. Continuing because AI is not a deploy gate for the core app."
else
@@ -169,7 +169,7 @@ jobs:
fi
if [ "$HEALTH_STATUS" = "unhealthy" ]; then
echo "AI service became unhealthy during deploy readiness wait. Continuing because AI is not a deploy gate for the core app."
docker compose logs --tail=200 ai-service || true
docker compose -f docker-compose.yml logs --tail=200 ai-service || true
break
fi
sleep "$SLEEP_SECS"
@@ -177,7 +177,7 @@ jobs:
done
if [ "${HEALTH_STATUS:-unknown}" != "healthy" ]; then
echo "AI service did not become healthy within $((ATTEMPTS * SLEEP_SECS)) seconds. Final status: ${HEALTH_STATUS:-unknown}. Continuing because AI is not a deploy gate for the core app."
docker compose ps
docker compose logs --tail=200 ai-service || true
docker compose -f docker-compose.yml ps
docker compose -f docker-compose.yml logs --tail=200 ai-service || true
fi
fi