We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d14aa20 + 30ff4da commit 86bc120Copy full SHA for 86bc120
1 file changed
sentry_sdk/integrations/arq.py
@@ -146,6 +146,9 @@ def _capture_exception(exc_info: "ExcInfo") -> None:
146
147
scope.transaction.set_status(SPANSTATUS.INTERNAL_ERROR)
148
149
+ if exc_info[0] in ARQ_CONTROL_FLOW_EXCEPTIONS:
150
+ return
151
+
152
event, hint = event_from_exception(
153
exc_info,
154
client_options=sentry_sdk.get_client().options,
0 commit comments