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 5ce2934 commit a3b43a3Copy full SHA for a3b43a3
src/sentry/tasks/deletion.py
@@ -93,7 +93,7 @@ def delete_project(object_id, continuous=True, **kwargs):
93
from sentry.models import (
94
Project, ProjectKey, ProjectStatus, TagKey, TagValue, GroupTagKey,
95
GroupTagValue, Activity, EventMapping, Group, GroupEmailThread,
96
- GroupMeta, GroupRuleStatus, GroupHash, GroupSeen, UserReport
+ GroupRuleStatus, GroupHash, GroupSeen, UserReport
97
)
98
99
try:
@@ -111,7 +111,7 @@ def delete_project(object_id, continuous=True, **kwargs):
111
# XXX: remove keys first to prevent additional data from flowing in
112
model_list = (
113
ProjectKey, TagKey, TagValue, GroupTagKey, GroupTagValue, EventMapping,
114
- Activity, GroupRuleStatus, GroupHash, GroupSeen, GroupMeta, UserReport,
+ Activity, GroupRuleStatus, GroupHash, GroupSeen, UserReport,
115
GroupEmailThread
116
117
for model in model_list:
0 commit comments