Skip to content

Commit

Permalink
ATS-28
Browse files Browse the repository at this point in the history
  • Loading branch information
madness-inc committed Nov 30, 2021
1 parent 97c4697 commit e72eadf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ public void entryExpired(EntryEvent<String, SessionData> event) {
session.readObjectData(ois);
if (log.isDebugEnabled()) {
log.debug("expired: " + expired + " (accessed "
+ ((float) (System.currentTimeMillis() - session.getLastAccessedTime()) / 1000)
+ "ms ago, TTL: " + session.getMaxInactiveInterval() + "s)");
+ ((float) (System.currentTimeMillis() - session.getLastAccessedTime()) / 1000) + "s ago, TTL: "
+ session.getMaxInactiveInterval() + "s)");
}
session.expire(true);
} catch (IOException | ClassNotFoundException e) {
Expand Down

0 comments on commit e72eadf

Please sign in to comment.