View | Details | Raw Unified | Return to bug 52488
Collapse All | Expand All

(-)apache-tomcat-6.0.35-src/java/org/apache/catalina/ha/session/DeltaManager.java.typo (-2 / +2 lines)
Lines 1381-1387 public class DeltaManager extends Cluste Link Here
1381
    }
1381
    }
1382
1382
1383
    /**
1383
    /**
1384
     * Exipre all find sessions.
1384
     * Expire all find sessions.
1385
     */
1385
     */
1386
    public void expireAllLocalSessions()
1386
    public void expireAllLocalSessions()
1387
    {
1387
    {
Lines 1405-1411 public class DeltaManager extends Cluste Link Here
1405
            }//end if
1405
            }//end if
1406
        }//for
1406
        }//for
1407
        long timeEnd = System.currentTimeMillis();
1407
        long timeEnd = System.currentTimeMillis();
1408
        if(log.isDebugEnabled()) log.debug("End expire sessions " + getName() + " exipre processingTime " + (timeEnd - timeNow) + " expired direct sessions: " + expireDirect + " expired direct sessions: " + expireIndirect);
1408
        if(log.isDebugEnabled()) log.debug("End expire sessions " + getName() + " expire processingTime " + (timeEnd - timeNow) + " expired direct sessions: " + expireDirect + " expired direct sessions: " + expireIndirect);
1409
      
1409
      
1410
    }
1410
    }
1411
    
1411
    
(-)apache-tomcat-6.0.35-src/java/org/apache/catalina/ha/session/mbeans-descriptors.xml.typo (-3 / +3 lines)
Lines 290-296 created by this Manager" Link Here
290
    <attribute
290
    <attribute
291
      name="expireSessionsOnShutdown"
291
      name="expireSessionsOnShutdown"
292
      is="true"
292
      is="true"
293
      description="exipre all sessions cluster wide as one node goes down"
293
      description="expire all sessions cluster wide as one node goes down"
294
      type="boolean"/>
294
      type="boolean"/>
295
    <attribute
295
    <attribute
296
      name="notifyListenersOnReplication"
296
      name="notifyListenersOnReplication"
Lines 385-391 created by this Manager" Link Here
385
    </operation>
385
    </operation>
386
    <operation
386
    <operation
387
      name="expireAllLocalSessions"
387
      name="expireAllLocalSessions"
388
      description="Exipre all active local sessions and replicate the invalid sessions"
388
      description="Expire all active local sessions and replicate the invalid sessions"
389
      impact="ACTION"
389
      impact="ACTION"
390
      returnType="void">    </operation>
390
      returnType="void">    </operation>
391
    <operation
391
    <operation
Lines 555-561 created by this Manager" Link Here
555
    <attribute
555
    <attribute
556
      name="expireSessionsOnShutdown"
556
      name="expireSessionsOnShutdown"
557
      is="true"
557
      is="true"
558
      description="exipre all sessions cluster wide as one node goes down"
558
      description="expire all sessions cluster wide as one node goes down"
559
      type="boolean"/>
559
      type="boolean"/>
560
    <attribute
560
    <attribute
561
      name="notifyListenersOnReplication"
561
      name="notifyListenersOnReplication"
(-)apache-tomcat-6.0.35-src/java/org/apache/catalina/tribes/membership/McastServiceImpl.java.typo (-1 / +1 lines)
Lines 353-359 public class McastServiceImpl Link Here
353
            for (int i = 0; i < expired.length; i++) {
353
            for (int i = 0; i < expired.length; i++) {
354
                final MemberImpl member = expired[i];
354
                final MemberImpl member = expired[i];
355
                if (log.isDebugEnabled())
355
                if (log.isDebugEnabled())
356
                    log.debug("Mcast exipre  member " + expired[i]);
356
                    log.debug("Mcast expire member " + expired[i]);
357
                try {
357
                try {
358
                    Thread t = new Thread() {
358
                    Thread t = new Thread() {
359
                        public void run() {
359
                        public void run() {

Return to bug 52488