We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3d126ff commit baae950Copy full SHA for baae950
1 file changed
sentry_sdk/integrations/arq.py
@@ -118,6 +118,9 @@ def _capture_exception(exc_info: "ExcInfo") -> None:
118
119
scope.transaction.set_status(SPANSTATUS.INTERNAL_ERROR)
120
121
+ if exc_info[0] in ARQ_CONTROL_FLOW_EXCEPTIONS:
122
+ return
123
+
124
event, hint = event_from_exception(
125
exc_info,
126
client_options=sentry_sdk.get_client().options,
0 commit comments