You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(integrations): Falcon integration checks response status before reporting error (#2465)
* Falcon checks actual HTTP status before reporting error
* Only support custom error handlers on Falcon 3+
* Add Falcon 3.1 to tox.ini
This change fixes an issue where the Falcon integration would report an error occurring in a Falcon request handler to Sentry, even though a Falcon custom event handler was handling the exception, causing an HTTP status other than 5xx to be returned. From now on, Falcon will inspect the HTTP status on the response before sending the associated error event to Sentry, and the error will only be reported if the response status is a 5xx status.
Fixes GH-#1362
0 commit comments