1
0
mirror of synced 2026-08-02 08:17:03 +00:00

SEC-1770: Call refreshLastRequest on the session registry rather than the SessionInformation object to make sure it works with alternative SessionRegistry implementations.

This commit is contained in:
Luke Taylor
2011-07-13 20:56:47 +01:00
parent d5946b81b4
commit a504cfae1a
@@ -101,7 +101,7 @@ public class ConcurrentSessionFilter extends GenericFilterBean {
return;
} else {
// Non-expired - update last request date/time
info.refreshLastRequest();
sessionRegistry.refreshLastRequest(info.getSessionId());
}
}
}