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
The package is still missing proper capturing of exceptions. The process_response hook in Falcon's middlewares does not contain information on raised exceptions (except for the boolean req_succeeded flag).
A solution could be to add a custom error handler like this:
The package is still missing proper capturing of exceptions. The
process_response
hook in Falcon's middlewares does not contain information on raised exceptions (except for the booleanreq_succeeded
flag).A solution could be to add a custom error handler like this:
and call
client.capture_exception(handled=False)
inside that handler.The text was updated successfully, but these errors were encountered: