Merge pull request #2866 from grnet/v3/fix-multimatch-tags

Fix tags not being populated in audit log when multiMatch is enabled
This commit is contained in:
martinhsv
2023-04-25 07:45:41 -07:00
committed by GitHub
2 changed files with 7 additions and 4 deletions

View File

@@ -229,6 +229,9 @@ void RuleWithActions::executeActionsIndependentOfChainedRuleResult(Transaction *
if (m_msg) {
m_msg->evaluate(this, trans, ruleMessage);
}
for (actions::Tag *a : m_actionsTag) {
a->evaluate(this, trans, ruleMessage);
}
}
}