You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When accessing a cookie, the expiration date should be updated.
For example, if my session.cookie_expires is 500, the expiry date of the cookie should always be last_accessed + 500 seconds.
Is this the expected behaviour for beaker, as it is for Sinatra, PHP and Flask?
Currently I have to use a before_request hook and call _update_cookie_out to make this possible
The text was updated successfully, but these errors were encountered:
When accessing a cookie, the expiration date should be updated.
For example, if my session.cookie_expires is 500, the expiry date of the cookie should always be last_accessed + 500 seconds.
Is this the expected behaviour for beaker, as it is for Sinatra, PHP and Flask?
Currently I have to use a before_request hook and call _update_cookie_out to make this possible
The text was updated successfully, but these errors were encountered: