Skip to content

Commit a3b43a3

Browse files
dcramermattrobenolt
authored andcommitted
GroupMeta cannot yet be bulk deleted
1 parent 5ce2934 commit a3b43a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sentry/tasks/deletion.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ def delete_project(object_id, continuous=True, **kwargs):
9393
from sentry.models import (
9494
Project, ProjectKey, ProjectStatus, TagKey, TagValue, GroupTagKey,
9595
GroupTagValue, Activity, EventMapping, Group, GroupEmailThread,
96-
GroupMeta, GroupRuleStatus, GroupHash, GroupSeen, UserReport
96+
GroupRuleStatus, GroupHash, GroupSeen, UserReport
9797
)
9898

9999
try:
@@ -111,7 +111,7 @@ def delete_project(object_id, continuous=True, **kwargs):
111111
# XXX: remove keys first to prevent additional data from flowing in
112112
model_list = (
113113
ProjectKey, TagKey, TagValue, GroupTagKey, GroupTagValue, EventMapping,
114-
Activity, GroupRuleStatus, GroupHash, GroupSeen, GroupMeta, UserReport,
114+
Activity, GroupRuleStatus, GroupHash, GroupSeen, UserReport,
115115
GroupEmailThread
116116
)
117117
for model in model_list:

0 commit comments

Comments
 (0)