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
Christoph Fiehe 2023-08-16 11:37:03 +02:00
parent 8bd0565ee3
commit 8fc534b5d6
1 changed files with 2 additions and 2 deletions

View File

@ -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",),
)