[jboss-cvs] JBossAS SVN: r93675 - branches/EMBEDDED_JBOSS_BETA3/tomcat/src/main/org/jboss/web/tomcat/service/session.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Sep 18 06:40:42 EDT 2009


Author: manaRH
Date: 2009-09-18 06:40:41 -0400 (Fri, 18 Sep 2009)
New Revision: 93675

Modified:
   branches/EMBEDDED_JBOSS_BETA3/tomcat/src/main/org/jboss/web/tomcat/service/session/JBossCacheManager.java
Log:
required to change to succesfull build the whole branch, change is not valid for tomcat project, but embedded doesn't use it

Modified: branches/EMBEDDED_JBOSS_BETA3/tomcat/src/main/org/jboss/web/tomcat/service/session/JBossCacheManager.java
===================================================================
--- branches/EMBEDDED_JBOSS_BETA3/tomcat/src/main/org/jboss/web/tomcat/service/session/JBossCacheManager.java	2009-09-18 09:43:48 UTC (rev 93674)
+++ branches/EMBEDDED_JBOSS_BETA3/tomcat/src/main/org/jboss/web/tomcat/service/session/JBossCacheManager.java	2009-09-18 10:40:41 UTC (rev 93675)
@@ -203,10 +203,10 @@
       if (passivationMode_)
       {
          PassivationConfig pConfig = webMetaData.getPassivationConfig();
-         Integer max = pConfig.getObjectMaxIdleTime();
+         Integer max = pConfig.getPassivationMaxIdleTime();
          if (max != null)
             passivationMaxObjectIdleTime_ = max.intValue();
-         max = pConfig.getMaxObjects();
+//         max = pConfig.getMaxObjects();
          if (max != null)
             passivationMaxObjects_ = max.intValue();
       }




More information about the jboss-cvs-commits mailing list