You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bi...@apache.org on 2003/01/10 06:40:12 UTC

cvs commit: jakarta-tomcat/src/facade22/org/apache/tomcat/facade HttpSessionFacade.java

billbarker    2003/01/09 21:40:12

  Modified:    src/facade22/org/apache/tomcat/facade HttpSessionFacade.java
  Log:
  Add support for the new STATE_INVALID behavior.
  
  Fix for bug #15894
  Reported By: Christian Wicke cwicke@ics.uci.edu
  
  Revision  Changes    Path
  1.19      +1 -0      jakarta-tomcat/src/facade22/org/apache/tomcat/facade/HttpSessionFacade.java
  
  Index: HttpSessionFacade.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat/src/facade22/org/apache/tomcat/facade/HttpSessionFacade.java,v
  retrieving revision 1.18
  retrieving revision 1.19
  diff -u -r1.18 -r1.19
  --- HttpSessionFacade.java	22 Mar 2002 02:54:34 -0000	1.18
  +++ HttpSessionFacade.java	10 Jan 2003 05:40:12 -0000	1.19
  @@ -155,6 +155,7 @@
   	if( dL > 0 ) d("Invalidate " + realSession.getId());
   	realSession.setState(ServerSession.STATE_EXPIRED);
   	realSession.recycle();
  +	realSession.setState(ServerSession.STATE_INVALID);
       }
   
       /**
  
  
  

--
To unsubscribe, e-mail:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>