Bug 66338 - ErrorReportValve.report no longer called for all errors
Summary: ErrorReportValve.report no longer called for all errors
Status: RESOLVED FIXED
Alias: None
Product: Tomcat 9
Classification: Unclassified
Component: Catalina (show other bugs)
Version: 9.0.67
Hardware: All All
: P2 minor (vote)
Target Milestone: -----
Assignee: Tomcat Developers Mailing List
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2022-11-04 08:10 UTC by Jan Judas
Modified: 2022-11-07 02:22 UTC (History)
0 users



Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Jan Judas 2022-11-04 08:10:16 UTC
Up to and including tomcat 9.0.65, the report method of ErrorReportValve was invoked for all requests, and subclasses could then decide on the exact conditions when to report an error. The logic at the start of the report method of ErrorReportValve and JsonErrorReportValve was identical, so it was refactored into  the invoke method of ErrorReportValve in 9.0.67.
However, this changes the behavior of all custom subclasses of ErrorReportValve - their report method now only gets called if the response is explitcitly marked as error. The report method no longer gets called for responses with status code >= 400, but without a Throwable. There is no way to customize this behavior without copy-pasting the whole invoke method.
It would be nice if the deduplicated code was not directly a part of the invoke method, but in a separate protected method that could be overridden by subclasses.
Comment 1 Remy Maucherat 2022-11-04 12:06:52 UTC
I agree this is an important nuance. Given this refactoring is not exactly super critical, I propose simply reverting it.
Comment 2 Han Li 2022-11-07 01:41:33 UTC
Ok, it's true that I hadn't considered this. I will simply revert it.
Comment 3 Han Li 2022-11-07 02:22:40 UTC
Thanks for the report.


Fixed in:
- 10.1.x for 10.1.2 onwards
- 9.0.x for 9.0.69 onwards
- 8.5.x for 8.5.84 onwards