We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
When I'm in the login view reloads get request multiple times per second. Everything else works fine but the login view shows this:
[12/Oct/2023 14:44:12] "GET /__reload__/events/ HTTP/1.1" 302 0 [12/Oct/2023 14:44:12] "GET /login/?next=/__reload__/events/ HTTP/1.1" 200 1888 [12/Oct/2023 14:44:15] "GET /__reload__/events/ HTTP/1.1" 302 0 [12/Oct/2023 14:44:15] "GET /login/?next=/__reload__/events/ HTTP/1.1" 200 1888 [12/Oct/2023 14:44:18] "GET /__reload__/events/ HTTP/1.1" 302 0 [12/Oct/2023 14:44:18] "GET /login/?next=/__reload__/events/ HTTP/1.1" 200 1888 [12/Oct/2023 14:44:21] "GET /__reload__/events/ HTTP/1.1" 302 0 [12/Oct/2023 14:44:21] "GET /login/?next=/__reload__/events/ HTTP/1.1" 200 1888 [12/Oct/2023 14:44:24] "GET /__reload__/events/ HTTP/1.1" 302 0 [12/Oct/2023 14:44:24] "GET /login/?next=/__reload__/events/ HTTP/1.1" 200 1888
To my settings I added:
LOGIN_URL = "/login/" LOGIN_REQUIRED_IGNORE_VIEW_NAMES = [ "login", ] LOGIN_REQUIRED_IGNORE_PATHS = [ r"/login/", ]
and also the login not required decorator to my login view.
Strangley it dosen't happen after a redirect from my loggout (permanent) view but starts again after using wrong login information
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I'm in the login view reloads get request multiple times per second. Everything else works fine but the login view shows this:
To my settings I added:
and also the login not required decorator to my login view.
Strangley it dosen't happen after a redirect from my loggout (permanent) view but starts again after using wrong login information
The text was updated successfully, but these errors were encountered: