Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apiserver/plane/api/serializers/issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ def update(self, instance, validated_data):
for assignee_id in assignees
],
batch_size=10,
ignore_conflicts=True,
)

if labels is not None:
Expand All @@ -224,6 +225,7 @@ def update(self, instance, validated_data):
for label_id in labels
],
batch_size=10,
ignore_conflicts=True,
)

# Time updation occues even when other related models are updated
Expand Down
2 changes: 2 additions & 0 deletions apiserver/plane/app/serializers/issue.py
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ def update(self, instance, validated_data):
for user in assignees
],
batch_size=10,
ignore_conflicts=True,
)

if labels is not None:
Expand All @@ -220,6 +221,7 @@ def update(self, instance, validated_data):
for label in labels
],
batch_size=10,
ignore_conflicts=True,
)

# Time updation occues even when other related models are updated
Expand Down
Loading