Merge pull request #1137 from Julien00859/1136
sanic.handlers.ErrorHandler.response handler call was too restrictive
This commit is contained in:
commit
b8bb77eff6
|
@ -79,9 +79,9 @@ class ErrorHandler:
|
|||
response = None
|
||||
try:
|
||||
if handler:
|
||||
response = handler(request=request, exception=exception)
|
||||
response = handler(request, exception)
|
||||
if response is None:
|
||||
response = self.default(request=request, exception=exception)
|
||||
response = self.default(request, exception)
|
||||
except Exception:
|
||||
self.log(format_exc())
|
||||
if self.debug:
|
||||
|
|
Loading…
Reference in New Issue
Block a user