Changes between Initial Version and Version 1 of Ticket #19544, comment 3


Ignore:
Timestamp:
Jan 5, 2013, 12:52:42 PM (11 years ago)
Author:
German M. Bravo

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #19544, comment 3

    initial v1  
    3535
    3636As you can see, I'm using pgsql, and I'm receiving this traceback from a celery task.
    37 The `contact.entities.add(from_entity)` is in a loop, which I'm not changing to pass an array to add all at once instead. Hopefully that could fix the problem, maybe some cache in the `entities` manager is not letting `_add_items()` to properly get the already used primary keys.
     37
     38The `contact.entities.add(from_entity)` is in a loop, and entities is a `ManyToManyField` (`entities = models.ManyToManyField(User)` in `SocialContact`):
     39{{{
     40    for contact in SocialContact.objects.filter(id__in=contact_ids):
     41        contact.entities.add(from_entity)
     42}}}
Back to Top