I am using webapp2 sessions and I want to override my default max_age settings (None) by using the max_age parameters in get_sessions()
self.session_store = sessions.get_store(request=self.request) self.session_store.get_session(max_age=1000000, backend='datastore') The backend works here, as i see the session in the database, but max_age is still None, as when i view the cookie in the browser, it expires when the browsing session ends. How can i override the default max_age? Thanks Jon -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-appengine/-/rdSeFu0wq4MJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
