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-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org