You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@classmethod
def add_post(cls, identity, post):
"""
Adds a post to the timeline if it's not there already
"""
event, created = cls.objects.get_or_create(
identity=identity,
type=cls.Types.post,
subject_post=post,
subject_identity=post.author,
defaults={"published": post.published or post.created},
It's hard to avoid race condition I think, so it's better to just add a unique constraint
DELETE FROM activities_timelineevent a
USING activities_timelineevent b
WHERE a.ctid < b.ctid
AND a.identity_id=b.identity_id
AND a.type=b.type
AND a.type='post'
AND a.subject_post_id=b.subject_post_id
AND a.subject_identity_id=b.subject_identity_id;
CREATE UNIQUE INDEX idx_uniq_timelineevent_post ON activities_timelineevent(identity_id, subject_post_id, subject_identity_id) WHERE type='post';
it can be added to model, but would like to see if anyone has other suggestions before I create a PR.
The text was updated successfully, but these errors were encountered:
from
It's hard to avoid race condition I think, so it's better to just add a unique constraint
it can be added to model, but would like to see if anyone has other suggestions before I create a PR.
The text was updated successfully, but these errors were encountered: