Skip to content

Commit ee2a56f

Browse files
authored
fix(aci): default Workflow frequency to 0 if not in config (#91995)
1 parent 76f6e1d commit ee2a56f

File tree

1 file changed

+1
-1
lines changed
  • src/sentry/workflow_engine/processors

1 file changed

+1
-1
lines changed

src/sentry/workflow_engine/processors/action.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ def get_action_last_updated_statuses(now: datetime, actions: BaseQuerySet[Action
4949
"action__dataconditiongroupaction__condition_group__workflowdataconditiongroup__workflow__config"
5050
),
5151
),
52-
Value("30"), # default 30
52+
Value("0"), # default 0
5353
),
5454
output_field=IntegerField(),
5555
)

0 commit comments

Comments
 (0)