You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to django-developers
I have a signal hook set on user_login. I use this in order to get_or_create a SessionInfo object, which I use to keep track of data about users who may login from more than one computer at the same time.
in 1.3, the Session object for the login that is taking place had already been created at the time of the hook execution.
However, In 1.4, Session.objects.all() yields empty during the hook execution.