We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e2eaff2 commit 75c611dCopy full SHA for 75c611d
1 file changed
src/main/java/io/kyberorg/yalsee/utils/session/SessionWatchdog.java
@@ -37,7 +37,7 @@ public SessionWatchdog(final AppUtils appUtils) {
37
public void endExpiredVaadinSessions() {
38
log.debug("{} Starting Session Cleanup", TAG);
39
//removing already invalidated sessions from list as reading their attributes leads to exceptions.
40
- SessionBox.getSessions().values().parallelStream()
+ SessionBox.getSessions().values().stream()
41
.filter(SessionBoxRecord::hasHttpSession)
42
.filter(SessionBoxRecord::httpSessionAlreadyInvalidated).map(SessionBoxRecord::getSessionId)
43
.forEach(this::removeSessionFromBox);
0 commit comments