-
Notifications
You must be signed in to change notification settings - Fork 41k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SessionRepositoryFilterConfiguration can cause early initialization of SessionRepository beans including Redis #35240
Comments
This is similar to #4154 |
yhcast0
pushed a commit
to Kyligence/kylin
that referenced
this issue
Aug 13, 2023
… which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community (#30507) Fix bug that all node can not get sessionid from http requert which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community spring-projects/spring-boot#35240
Aligadodo
pushed a commit
to Aligadodo/kylin
that referenced
this issue
Nov 15, 2023
… which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community (#30507) Fix bug that all node can not get sessionid from http requert which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community spring-projects/spring-boot#35240
Aligadodo
pushed a commit
to Aligadodo/kylin
that referenced
this issue
Nov 17, 2023
… which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community (#30507) Fix bug that all node can not get sessionid from http requert which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community spring-projects/spring-boot#35240
Aligadodo
pushed a commit
to Aligadodo/kylin
that referenced
this issue
Nov 17, 2023
…ert which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community Fix bug that all node can not get sessionid from http requert which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community spring-projects/spring-boot#35240
hit-lacus
pushed a commit
to apache/kylin
that referenced
this issue
Nov 21, 2023
…ert which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community Fix bug that all node can not get sessionid from http requert which redirect by query node caused by commit 'prevent early initialization of SessionRepository beans' from spring community spring-projects/spring-boot#35240
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SessionRepositoryFilterConfiguration.sessionRepositoryFilterRegistration
is a filter registration bean which means it's initialized very early. It injects aSessionRepositoryFilter
which is defined inSpringHttpSessionConfiguration
and itself injects aSessionRepository
. If aRedisSessionRepository
is being used, then full initialization ofRedis
occurs.The text was updated successfully, but these errors were encountered: