Skip to content
This repository was archived by the owner on Jun 3, 2026. It is now read-only.

Commit 5b04cc7

Browse files
Fix Sentry probe lint
1 parent a141611 commit 5b04cc7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/api/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ async def prometheus_metrics():
194194
async def sentry_debug():
195195
"""Intentionally raises an error to verify Sentry is capturing exceptions."""
196196
try:
197-
division_by_zero = 1 / 0
197+
1 / 0
198198
except ZeroDivisionError as exc:
199199
from src.config.monitoring import capture_exception
200200
capture_exception(exc)

0 commit comments

Comments
 (0)