[jboss-cvs] JBossAS SVN: r100823 - trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/ondemand.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Feb 10 15:41:50 EST 2010


Author: bstansberry at jboss.com
Date: 2010-02-10 15:41:49 -0500 (Wed, 10 Feb 2010)
New Revision: 100823

Modified:
   trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/ondemand/OnDemandContextProfileManager.java
Log:
[JBAS-7713] Disable hot deployment for now

Modified: trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/ondemand/OnDemandContextProfileManager.java
===================================================================
--- trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/ondemand/OnDemandContextProfileManager.java	2010-02-10 18:58:23 UTC (rev 100822)
+++ trunk/tomcat/src/main/java/org/jboss/web/tomcat/service/ondemand/OnDemandContextProfileManager.java	2010-02-10 20:41:49 UTC (rev 100823)
@@ -485,7 +485,8 @@
       // TODO add dependencies on bootstrap profiles 
       String[] rootSubProfiles = new String[0];
       // Create a hotdeployment profile
-      ProfileMetaData metadata = createProfileMetaData(true, rootURIs, rootSubProfiles);
+      // FIXME JBAS-7720 restore hot deploy capability (and make it configurable too)
+      ProfileMetaData metadata = createProfileMetaData(false, rootURIs, rootSubProfiles);
       
       Profile profile = profileFactory.createProfile(getProfileKey(), metadata);
       profileService.registerProfile(profile);      




More information about the jboss-cvs-commits mailing list