Fixes the issue "PGSessionStore.vacuum() got an unexpected keyword argument 'max_lifetime'" when autovacuum gets executed.
Signed-off-by: Christoph Fiehe <c.fiehe@eurodata.de>pull/2697/head
parent
8bd0565ee3
commit
8fc534b5d6
|
@ -142,11 +142,11 @@ class PGSessionStore(sessions.SessionStore):
|
|||
|
||||
@with_lock
|
||||
@with_cursor
|
||||
def vacuum(self):
|
||||
def vacuum(self, max_lifetime=http.SESSION_LIFETIME):
|
||||
self._cr.execute(
|
||||
"DELETE FROM http_sessions "
|
||||
"WHERE now() at time zone 'UTC' - write_date > %s",
|
||||
(f"{http.SESSION_LIFETIME} seconds",),
|
||||
(f"{max_lifetime} seconds",),
|
||||
)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue