Skip to content

Commit 66db4f3

Browse files
committed
Fixes #14827: Ensure all matching event rules are processed in response to an event
1 parent 5de2dea commit 66db4f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

netbox/extras/events.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ def process_event_rules(event_rules, model_name, event, data, username, snapshot
8181

8282
# Evaluate event rule conditions (if any)
8383
if not event_rule.eval_conditions(data):
84-
return
84+
continue
8585

8686
# Webhooks
8787
if event_rule.action_type == EventRuleActionChoices.WEBHOOK:

0 commit comments

Comments
 (0)