337746 Fixed Session deIdle recursion
git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2814 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
parent
5dcd74cda5
commit
22e142a871
|
@ -12,6 +12,7 @@ jetty-7.3.1-SNAPSHOT
|
|||
+ 337271 Flush SSL endpoint when dispatch thread held forever
|
||||
+ 337678 Readded optional async connection mode for HttpClient
|
||||
+ 337685 Work in progress on draft 5 websockets
|
||||
+ 337746 Fixed Session deIdle recursion
|
||||
+ 337784 Improve HashSessionManager for session migrations
|
||||
+ JETTY-1331 Allow alternate XML configuration processors (eg spring)
|
||||
|
||||
|
|
|
@ -726,6 +726,7 @@ public class HashSessionManager extends AbstractSessionManager
|
|||
{
|
||||
// Access now to prevent race with idling period
|
||||
access(System.currentTimeMillis());
|
||||
|
||||
|
||||
if (Log.isDebugEnabled())
|
||||
{
|
||||
|
@ -741,9 +742,9 @@ public class HashSessionManager extends AbstractSessionManager
|
|||
throw new FileNotFoundException(file.getName());
|
||||
|
||||
fis = new FileInputStream(file);
|
||||
_idled = false;
|
||||
restoreSession(fis, this);
|
||||
|
||||
_idled = false;
|
||||
didActivate();
|
||||
|
||||
// If we are doing period saves, then there is no point deleting at this point
|
||||
|
|
Loading…
Reference in New Issue