From 732ccba966d373d5f5e2b6ec6367a8014b50dba9 Mon Sep 17 00:00:00 2001 From: Michael Chihlas Date: Sat, 7 Mar 2026 19:37:50 -0500 Subject: [PATCH] chore: remove /sentry-debug endpoint after verification Co-Authored-By: Claude Opus 4.6 --- backend/app/main.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/backend/app/main.py b/backend/app/main.py index 74b8a491..ccf3feb8 100644 --- a/backend/app/main.py +++ b/backend/app/main.py @@ -252,12 +252,6 @@ async def health_check(): return {"status": "healthy"} -@app.get("/sentry-debug") -async def trigger_error(): - """Sentry verification endpoint — triggers a test error.""" - division_by_zero = 1 / 0 - - if settings.DEBUG: @app.get("/debug/cors") async def debug_cors():