Skip to content

Commit

Permalink
Merge pull request camptocamp#464 from xcgd/17.0-session_redis-fix-va…
Browse files Browse the repository at this point in the history
…cuum

[17.0][FIX] session_redis: fix vacuum
  • Loading branch information
gurneyalex authored Aug 27, 2024
2 parents 5e98c14 + 23724e9 commit 471fe15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion session_redis/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ def rotate(self, session, env):
session.session_token = security.compute_session_token(session, env)
self.save(session)

def vacuum(self):
def vacuum(self, *args, **kwargs):
"""Do not garbage collect the sessions
Redis keys are automatically cleaned at the end of their
Expand Down

0 comments on commit 471fe15

Please sign in to comment.