ci: temp disable sse in ci

This commit is contained in:
Chris Coutinho
2025-11-16 07:03:18 +01:00
parent 137d1d6c75
commit 529daf2b48
4 changed files with 21 additions and 7 deletions
@@ -39,7 +39,12 @@ class HealthCheckFilter(logging.Filter):
message = record.getMessage()
return not any(
endpoint in message
for endpoint in ["/health/live", "/health/ready", "/metrics"]
for endpoint in [
"/health/live",
"/health/ready",
"/metrics",
"/app/vector-sync/status",
]
)