-
-
Notifications
You must be signed in to change notification settings - Fork 247
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
session.present vs session == nil #515
Comments
You've probably done what I just spent 5 hours troubleshooting.. lua-resty-session needs to be fixed at version 3.10 or lower. Default pulling latest will now work and this error was exactly what I experienced. |
I think there is an inconsistency in the modules |
That's exactly why it can't find |
There is now release 1.8.0 of |
Hi.
While working with lua-resty-openidc, I encountered the "request to the redirect_uri path but there's no session state found" error. I added some logs to the source code and realized that the session.present in the line returns false. Then, I added the session variable in the logs and found that it is present.
How is it possible?
I tried to comment out that if block and after that it reached this line and then returned false.
The question is what is the difference between session.present and session == nil that is in this line?
Environment
Expected behaviour
session.present returns true when session is not null.
Actual behaviour
session.present returns false even if session == nil was false above.
The text was updated successfully, but these errors were encountered: