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 2b9b855 commit 87ecf74Copy full SHA for 87ecf74
src/sentry/tasks/seer/lightweight_rca_cluster.py
@@ -1,6 +1,7 @@
1
import logging
2
3
from sentry.models.group import Group
4
+from sentry.seer.supergroups.lightweight_rca_cluster import trigger_lightweight_rca_cluster
5
from sentry.tasks.base import instrumented_task
6
from sentry.taskworker.namespaces import ingest_errors_postprocess_tasks
7
@@ -12,8 +13,6 @@
12
13
namespace=ingest_errors_postprocess_tasks,
14
)
15
def trigger_lightweight_rca_cluster_task(group_id: int, **kwargs) -> None:
- from sentry.seer.supergroups.lightweight_rca_cluster import trigger_lightweight_rca_cluster
16
-
17
try:
18
group = Group.objects.get(id=group_id)
19
except Group.DoesNotExist:
0 commit comments