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
We should remove code paths in which we intentionally return a 500 status code, since this is never a desirable situation. If there really is an internal error related to the semantics of our application, a non-http exception should be raised, because the webapp2 500 error handler is only called when the exception does not inherit from HTTPException. This ensures our custom error handling / logging code is called
See #451
The text was updated successfully, but these errors were encountered:
We should remove code paths in which we intentionally return a 500 status code, since this is never a desirable situation. If there really is an internal error related to the semantics of our application, a non-http exception should be raised, because the webapp2 500 error handler is only called when the exception does not inherit from HTTPException. This ensures our custom error handling / logging code is called
See #451
The text was updated successfully, but these errors were encountered: