File tree Expand file tree Collapse file tree 1 file changed +5
-3
lines changed
src/sentry/workflow_engine/processors Expand file tree Collapse file tree 1 file changed +5
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import logging
4
4
from collections import defaultdict
5
- from collections .abc import Mapping , Sequence , Iterable
5
+ from collections .abc import Iterable , Mapping , Sequence
6
6
from dataclasses import dataclass
7
7
from datetime import timedelta
8
8
from functools import cached_property
@@ -540,9 +540,11 @@ def fire_actions_for_groups(
540
540
extra = {"group_id" : group .id , "event_data" : workflow_event_data },
541
541
threshold_seconds = 1 ,
542
542
):
543
- workflows_actions = evaluate_workflows_action_filters (workflows , event_data )
543
+ workflows_actions = evaluate_workflows_action_filters (
544
+ workflows , workflow_event_data
545
+ )
544
546
filtered_actions = filter_recently_fired_workflow_actions (
545
- action_filters | workflows_actions , event_data
547
+ action_filters | workflows_actions , workflow_event_data
546
548
)
547
549
create_workflow_fire_histories (filtered_actions , workflow_event_data )
548
550
You can’t perform that action at this time.
0 commit comments