BaseRuleChainProcessor - use saveRuleChain method without validation

This commit is contained in:
Volodymyr Babak 2025-02-28 11:49:00 +02:00
parent cc925a75c4
commit ffa9aec2b1

View File

@ -61,7 +61,7 @@ public class BaseRuleChainProcessor extends BaseEdgeProcessor {
if (created) {
ruleChain.setId(ruleChainId);
}
edgeCtx.getRuleChainService().saveRuleChain(ruleChain);
edgeCtx.getRuleChainService().saveRuleChain(ruleChain, true, false);
return Pair.of(created, isRoot);
}