Skip to content
Snippets Groups Projects
Commit c580197a authored by Jeremy Kersten's avatar Jeremy Kersten
Browse files

[FIX] base: handle_exception should never alter json response


Before this commit, in case you were in --dev-mode, if a json request crash,
it was wrongly intercepted and return a Internal Server Error with status 500
and without the JSON Response

For the change of http code, since it is only in dev mode, it could not impact
a production server (in theory) with custom code based on it.

After this commit, if your rpc fails, you will not have anymore a breakpoint in
the code to help the developer to debug. But you will have a status 200 on the
rpc request.

closes odoo/odoo#54668

X-original-commit: 534cca31
Signed-off-by: default avatarOlivier Dony (odo) <odo@openerp.com>
Signed-off-by: default avatarJérémy Kersten (jke) <jke@openerp.com>
parent 11b1b82c
No related branches found
No related tags found
No related merge requests found
......@@ -194,7 +194,12 @@ class IrHttp(models.AbstractModel):
return serve
# Don't handle exception but use werkzeug debugger if server in --dev mode
if 'werkzeug' in tools.config['dev_mode'] and not isinstance(exception, werkzeug.exceptions.NotFound):
# Don't intercept JSON request to respect the JSON Spec and return exception as JSON
# "The Response is expressed as a single JSON Object, with the following members:
# jsonrpc, result, error, id"
if ('werkzeug' in tools.config['dev_mode']
and not isinstance(exception, werkzeug.exceptions.NotFound)
and request._request_type != 'json'):
raise exception
try:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment