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