Skip to content
Snippets Groups Projects
Commit e7ac7a34 authored by vlorentz's avatar vlorentz
Browse files

Disable reporting of NotFound exceptions to Sentry

parent 9f94c73b
No related branches found
No related tags found
1 merge request!350Disable reporting of NotFound exceptions to Sentry
......@@ -454,7 +454,7 @@ class BaseLoader:
},
},
)
if not isinstance(e, (SystemExit, KeyboardInterrupt)):
if not isinstance(e, (SystemExit, KeyboardInterrupt, NotFound)):
sentry_sdk.capture_exception()
visit_status = OriginVisitStatus(
origin=self.origin.url,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment