2009/6/21 Alessandro Ronchi <alessandro.ron...@soasi.com>

> I have a very strange problem.
>
> With this function:
>
>     def get_current(self):
>
>         facebook = get_facebook_client()
>         user, created = self.get_or_create(id=int(facebook.uid))
>         if created:
>             # we could do some custom actions for new users here...
>             pass
>         return user
>
>
> called by
> user = User.objects.get_current()
>
> I get an integrity error: duplicate key.
>
> how it's possible? if is there already a user with that key it should
> return that without cause an integrity error, true?


it's particulary strange because I've this problem with a user id and not
with another
IntegrityError: (1062, "Duplicate entry '2147483647' for key 1")

2147483647 doesn't work, 527319900 works

This problem is blocking me and I've done all the test I thought to be
useful..

If I try this:
User.objects.get(id=2147483647) it returns the object, but If I write:

try:
   user = User.objects.get(id=int(facebook.uid))
except:
   user = User(id=int(facebook.uid))
   user.save()

it gets into the except and tries to open another User with the same id!


-- 
Alessandro Ronchi
Skype: aronchi

SOASI Soc.Coop. - www.soasi.com
Sviluppo Software e Sistemi Open Source
Sede: Via Poggiali 2/bis, 47100 Forlì (FC)
Tel.: +39 0543 798985 - Fax: +39 0543 579928

Rispetta l'ambiente: se non ti è necessario, non stampare questa mail

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to