git-svn-id: https://svn.apache.org/repos/asf/tomcat/tc6.0.x/trunk@500660
13f79535-47bb-0310-9956-
ffa450edef68
if (checkInterval != null) {
try {
this.checkInterval = Integer.parseInt(checkInterval);
- if (this.checkInterval == 0) {
- this.checkInterval = 300;
- if (log.isWarnEnabled()) {
- log.warn(Localizer.getMessage("jsp.warning.checkInterval"));
- }
- }
} catch(NumberFormatException ex) {
if (log.isWarnEnabled()) {
log.warn(Localizer.getMessage("jsp.warning.checkInterval"));
Fix regression for implicit taglib and page data version numbers. (remm)
</fix>
<fix>
+ <bug>41265</bug>: Allow JspServlet checkInterval init parameter to be
+ explicitly set to the stated default value of zero by removing the
+ code that resets it to 300 if explicitly specified as zero. (markt)
+ </fix>
+ <fix>
<bug>41327</bug>: Show full URI for a 404. Patch provided by Vijay.
(markt)
</fix>