You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by kf...@apache.org on 2010/10/26 11:33:01 UTC

svn commit: r1027418 - in /tomcat/tc6.0.x/trunk: STATUS.txt java/org/apache/catalina/ha/session/BackupManager.java webapps/docs/changelog.xml

Author: kfujino
Date: Tue Oct 26 09:33:00 2010
New Revision: 1027418

URL: http://svn.apache.org/viewvc?rev=1027418&view=rev
Log:
Add support for maxActiveSessions attribute to BackupManager.

Modified:
    tomcat/tc6.0.x/trunk/STATUS.txt
    tomcat/tc6.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java
    tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml

Modified: tomcat/tc6.0.x/trunk/STATUS.txt
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/STATUS.txt?rev=1027418&r1=1027417&r2=1027418&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/STATUS.txt (original)
+++ tomcat/tc6.0.x/trunk/STATUS.txt Tue Oct 26 09:33:00 2010
@@ -252,11 +252,6 @@ PATCHES PROPOSED TO BACKPORT:
    kkolinko: There are known problems with "-x" and "-r" on os400, (see
    comments in the *.sh files) so maybe "-w" does not work there as well.
 
-* Add support for maxActiveSessions attributes to BackupManager.
-  http://svn.apache.org/viewvc?rev=1025899&view=rev
-  +1: kfujino, kkolinko, markt
-  -1:
-
 * Improve sending an access message in DeltaManager.
   maxInactiveInterval of not Manager but the session is used. 
   If maxInactiveInterval is negative, an access message is not sending. 

Modified: tomcat/tc6.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java?rev=1027418&r1=1027417&r2=1027418&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java (original)
+++ tomcat/tc6.0.x/trunk/java/org/apache/catalina/ha/session/BackupManager.java Tue Oct 26 09:33:00 2010
@@ -288,6 +288,7 @@ public class BackupManager extends Stand
         result.cluster = cluster;
         result.notifyListenersOnReplication = notifyListenersOnReplication;
         result.mapSendOptions = mapSendOptions;
+        result.maxActiveSessions = maxActiveSessions;
         return result;
     }
 

Modified: tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml
URL: http://svn.apache.org/viewvc/tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml?rev=1027418&r1=1027417&r2=1027418&view=diff
==============================================================================
--- tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml (original)
+++ tomcat/tc6.0.x/trunk/webapps/docs/changelog.xml Tue Oct 26 09:33:00 2010
@@ -216,6 +216,9 @@
         <bug>49924</bug>: When non-primary node changes into a primary node,
         make sure isPrimarySession is changed to true. (kfujino)
       </fix>
+      <fix>
+        Add support for maxActiveSessions attribute to BackupManager. (kfujino)
+      </fix>
     </changelog>
   </subsection>
   <subsection name="Webapps">



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