You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2010/05/13 00:32:22 UTC

svn commit: r943726 - /tomcat/trunk/java/org/apache/catalina/core/StandardContext.java

Author: markt
Date: Wed May 12 22:32:22 2010
New Revision: 943726

URL: http://svn.apache.org/viewvc?rev=943726&view=rev
Log:
Wrappers are started when added to the Context (since the Context is already starting). Don't try and start them twice.

Modified:
    tomcat/trunk/java/org/apache/catalina/core/StandardContext.java

Modified: tomcat/trunk/java/org/apache/catalina/core/StandardContext.java
URL: http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/catalina/core/StandardContext.java?rev=943726&r1=943725&r2=943726&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/catalina/core/StandardContext.java (original)
+++ tomcat/trunk/java/org/apache/catalina/core/StandardContext.java Wed May 12 22:32:22 2010
@@ -4630,12 +4630,6 @@ public class StandardContext extends Con
                 // Notify our interested LifecycleListeners
                 fireLifecycleEvent(Lifecycle.CONFIGURE_START_EVENT, null);
                 
-                // Start our child containers, if any
-                Container children[] = findChildren();
-                for (int i = 0; i < children.length; i++) {
-                    children[i].start();
-                }
-
                 // Start the Valves in our pipeline (including the basic),
                 // if any
                 if (pipeline instanceof Lifecycle) {



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org