On Thu, Jun 3, 2010 at 9:06 PM, aa56280 <[email protected]> wrote: > Django's docs say: "When a user logs in, Django adds a row to the > django_session database table. Django updates this row each time the > session data changes. If the user logs out manually, Django deletes > the row. But if the user does not log out, the row never gets > deleted." > > I'm logging out of my app but I notice that the row DOES NOT get > deleted. Is there something I'm missing here? >
How are you logging out? Are you sure you are calling django.contrib.auth.logout() ? Cheers Tom -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

