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

Commit 2a5db42

Browse files
Fix Sentry probe lint
1 parent 7036dd1 commit 2a5db42

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
@@ -190,7 +190,7 @@ async def prometheus_metrics():
190190
async def sentry_debug():
191191
"""Intentionally raises an error to verify Sentry is capturing exceptions."""
192192
try:
193-
division_by_zero = 1 / 0
193+
1 / 0
194194
except ZeroDivisionError as exc:
195195
from src.config.monitoring import capture_exception
196196
capture_exception(exc)

0 commit comments

Comments
 (0)