Opened 13 years ago

Closed 13 years ago

Last modified 13 years ago

#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

Change History (2)

comment:1 by Aymeric Augustin, 13 years ago

Resolution: needsinfo
Status: newclosed

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?

comment:2 by Jacob, 13 years ago

milestone: 1.4

Milestone 1.4 deleted

Note: See TracTickets for help on using tickets.
Back to Top