#16560 closed New feature (needsinfo)
repasses cleanup function to SessionBase
Reported by: | wpjunior | Owned by: | nobody |
---|---|---|---|
Component: | contrib.sessions | Version: | 1.3 |
Severity: | Normal | Keywords: | |
Cc: | Triage Stage: | Unreviewed | |
Has patch: | no | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
for this example:
when use "python manage.py cleanup"
calls cleanup method off my Backend
class MyBackend(SessionBase): def cleanup(self): # remove expired data
Note:
See TracTickets
for help on using tickets.
I'm sorry, but your description doesn't contain enough information for me to understand what's happening and why you think it's a bug or a missing feature in Django.
Are you suggesting that sessions backends should provide a
cleanup
method, and that./manage.py cleanup
should call the cleanup method of the backend configured in the settings?