Skip to content

Commit

Permalink
Supprime le timeout sur la session côté serveur
Browse files Browse the repository at this point in the history
Par défaut 1800 secondes, -1 pour une limite in(dé)finie

Issue #205222

Change-Id: Ia1c7e2c5f523c8f185e9f5171a9234ebb50b80e1
  • Loading branch information
tdegivry committed Feb 6, 2024
1 parent a697813 commit 6bd055d
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ public String login(
}
// Create a new session for the user.
session = request.getSession(true);
session.setMaxInactiveInterval(-1);

String autResult = authService.authUser(utilisateur.getIdentifiant(), password);
// On utilise le redirect sinon le header Set-Cookie avec le nouveau
Expand Down Expand Up @@ -107,6 +108,7 @@ public String loginXML(
}
// Create a new session for the user.
session = request.getSession(true);
session.setMaxInactiveInterval(-1);

String autResult = authService.authUser(username, password);
// On utilise le redirect sinon le header Set-Cookie avec le nouveau
Expand Down

0 comments on commit 6bd055d

Please sign in to comment.