Skip to content

Commit

Permalink
Made SessionManager static - so sessions are remembered properly.
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianKirmaier committed Dec 15, 2023
1 parent c47a0d4 commit 90b0c42
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ public class LoginApp extends RouteApp {
static final String GOOGLE_CLIENT_ID = System.getenv("GOOGLE_TEST_CLIENT_ID");
static final String GOOGLE_CLIENT_SECRET = System.getenv("GOOGLE_TEST_CLIENT_SECRET");

private final SessionManager sessionManager = new SessionManager("simple-app");
private static final SessionManager sessionManager = new SessionManager("simple-app");

@Override
public Route createRoute() {
Expand Down

0 comments on commit 90b0c42

Please sign in to comment.