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
Currently request.invoke_exception_view restores request.exception to whatever it was before when it completes. I think instead it should follow the behavior of the excview tween in #3029 and overwrite request.exception and request.exc_info if it manages to return a response. This will simplify the lives of most people who would want to use the method in trying to conform to this idea of having the request.exception match the response object it was used to create.
The text was updated successfully, but these errors were encountered:
Currently
request.invoke_exception_view
restoresrequest.exception
to whatever it was before when it completes. I think instead it should follow the behavior of the excview tween in #3029 and overwriterequest.exception
andrequest.exc_info
if it manages to return a response. This will simplify the lives of most people who would want to use the method in trying to conform to this idea of having the request.exception match the response object it was used to create.The text was updated successfully, but these errors were encountered: