Skip to content

Commit

Permalink
CLDR-15744 partial revert of #3764 user.touch()
Browse files Browse the repository at this point in the history
 - seems to be creating excessive DB connections
  • Loading branch information
srl295 committed Jun 4, 2024
1 parent 7edb42e commit 1dbd518
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -359,9 +359,9 @@ public void touch() {
/** Note a direct user action. */
public void userDidAction() {
lastActionMillisSinceEpoch = System.currentTimeMillis();
if (user != null) {
user.touch(); // explicitly update user last login time
}
// if (user != null) {
// user.touch(); // explicitly update user last login time
// }
}

/**
Expand Down

0 comments on commit 1dbd518

Please sign in to comment.