Author: rjung
Date: Sat Jun 10 00:54:52 2006
New Revision: 413267

URL: http://svn.apache.org/viewvc?rev=413267&view=rev
Log:
BZ 38676: new tagfiles are continuously being reloaded.

Modified:
    
tomcat/jasper/tc6.0.x/src/share/org/apache/jasper/servlet/JspServletWrapper.java

Modified: 
tomcat/jasper/tc6.0.x/src/share/org/apache/jasper/servlet/JspServletWrapper.java
URL: 
http://svn.apache.org/viewvc/tomcat/jasper/tc6.0.x/src/share/org/apache/jasper/servlet/JspServletWrapper.java?rev=413267&r1=413266&r2=413267&view=diff
==============================================================================
--- 
tomcat/jasper/tc6.0.x/src/share/org/apache/jasper/servlet/JspServletWrapper.java
 (original)
+++ 
tomcat/jasper/tc6.0.x/src/share/org/apache/jasper/servlet/JspServletWrapper.java
 Sat Jun 10 00:54:52 2006
@@ -217,6 +217,7 @@
 
             if (reload) {
                 tagHandlerClass = ctxt.load();
+                reload = false;
             }
         } catch (FileNotFoundException ex) {
             throw new JasperException(ex);
@@ -250,6 +251,7 @@
            if (isTagFile) {
                 if (reload) {
                     tagHandlerClass = ctxt.load();
+                    reload = false;
                 }
                target = tagHandlerClass.newInstance();
            } else {



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to