Re: request.user not pickable anymore

2011-09-17 Thread Torsten Bronger
Hallöchen! Łukasz Rekucki writes: > On 16 September 2011 22:05, Torsten Bronger > wrote: > >> this means that we don't have to do anything. > > Not really. To 1.4 not be affected, someone needs to write a patch > for that ticket. Of course you are right. I was only refering to "Milestone 1.4"

Re: request.user not pickable anymore

2011-09-16 Thread Łukasz Rekucki
On 16 September 2011 22:05, Torsten Bronger wrote: > this means that we don't have to do anything. Not really. To 1.4 not be affected, someone needs to write a patch for that ticket. This can be you ;) -- Łukasz Rekucki -- You received this message because you are subscribed to the Google Gro

Re: request.user not pickable anymore

2011-09-16 Thread Torsten Bronger
Hallöchen! Tim Shaffer writes: > Looks like there might already be a ticket open to fix this: > > https://code.djangoproject.com/ticket/16563 Wow, thank you! Since 1.3 is not affected and 1.4 won't be probably, this means that we don't have to do anything. Tschö, Torsten. -- Torsten Bronger

Re: request.user not pickable anymore

2011-09-16 Thread Tim Shaffer
Looks like there might already be a ticket open to fix this: https://code.djangoproject.com/ticket/16563 -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/um

request.user not pickable anymore

2011-09-16 Thread Torsten Bronger
Hallöchen! Since , request.user is a SimpleLazyObject. This means that def my_simple_test_view(request): import pickle pickle.dumps(request.user) fails. Since we put objects in the cache which contain request.user, we saw a tr