Skip to content
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

Long lived sessions staying long-lived after session.permanent set False #36

Closed
gbyoung opened this issue May 11, 2010 · 1 comment
Closed

Comments

@gbyoung
Copy link

gbyoung commented May 11, 2010

Fixed it by adding the session_expires=None to the end of this method call:

def save_session(self, session, response):
expires = None
if session.permanent:
expires = datetime.utcnow() + self.permanent_session_lifetime
session.save_cookie(response, self.session_cookie_name,
expires=expires, httponly=True, session_expires=None) <== only change

@mitsuhiko
Copy link
Contributor

That is the default for the parameter, changing that won't change that :) I cannot reproduce that issue though. What version of Werkzeug is that?

@github-actions github-actions bot locked as resolved and limited conversation to collaborators Nov 14, 2020
This issue was closed.
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants