We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a721f0 commit 9e37c01Copy full SHA for 9e37c01
src/sentry/issues/ongoing.py
@@ -24,7 +24,7 @@ def bulk_transition_group_to_ongoing(
24
# make sure we don't update the Group when its already updated by conditionally updating the Group
25
groups_to_transistion = Group.objects.filter(
26
id__in=group_ids, status=from_status, substatus=from_substatus
27
- )
+ ).select_related("project")
28
span.set_tag("group_ids", group_ids)
29
span.set_tag("groups_to_transistion count", len(groups_to_transistion))
30
0 commit comments