fix(vector-sync): address round-7 — only log purge endpoint when enabled

- app.py: move the /api/v1/vector-sync/purge mention out of the unconditional
  management-endpoints log and into the vector_sync_enabled block, so operators
  without Qdrant don't see an endpoint that 404s
- vector_sync route: comment why doc_types isn't whitelisted against
  INDEXED_DOC_TYPES (unknown type = harmless zero-match no-op)

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
Chris Coutinho
2026-06-16 02:03:26 +02:00
co-authored by Claude Opus 4.8
parent 21ce620a84
commit ea53ed9ce0
2 changed files with 5 additions and 1 deletions
+2 -1
View File
@@ -2435,6 +2435,7 @@ def get_app(transport: str = "streamable-http", enabled_apps: list[str] | None =
methods=["POST"],
)
)
logger.info("Vector-sync admin endpoint enabled: /api/v1/vector-sync/purge")
# Access and scope management endpoints (ADR-022)
routes.append(
Route(
@@ -2457,7 +2458,7 @@ def get_app(transport: str = "streamable-http", enabled_apps: list[str] | None =
"/api/v1/users/{user_id}/app-password, /api/v1/users/{user_id}/access, "
"/api/v1/users/{user_id}/scopes, /api/v1/scopes, "
"/api/v1/vector-viz/search, /api/v1/search, /api/v1/apps, "
"/api/v1/webhooks, /api/v1/vector-sync/purge, /api/v1/pdf-preview"
"/api/v1/webhooks, /api/v1/pdf-preview"
)
# Note: Metrics endpoint is NOT exposed on main HTTP port for security reasons.