Context name rather than Context path is passed in so construct ContextName object...
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 30 Nov 2010 17:42:01 +0000 (17:42 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Tue, 30 Nov 2010 17:42:01 +0000 (17:42 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@1040652 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/catalina/startup/HostConfig.java
webapps/docs/changelog.xml

index e8fe572..7030d7f 100644 (file)
@@ -478,7 +478,7 @@ public class HostConfig
 
         File appBase = appBase();
         File configBase = configBase();
-        ContextName cn = new ContextName(name, null);
+        ContextName cn = new ContextName(name);
         String baseName = cn.getBaseName();
         
         // Deploy XML descriptors from configBase
index 9b0ace2..b5ceff3 100644 (file)
@@ -76,6 +76,9 @@
         Further Lifecycle refactoring for Connectors and associated components.
         (markt)
       </fix>
+      <fix>
+        Correct handling of versioned web applications in deployer. (markt)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Coyote">