Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
Engine 2.14.0
-
None
Description
When the error handler is invoked, the chain of actions is currently:
- invoke error filters
- reset the response
- call error handler
Obviously that order is wrong as it resets whatever error filters might have already set on the response (like headers). The order should be :
- reset the response
- invoke error filters
- call error handler