Showing
2 changed files
with
2 additions
and
2 deletions
... | ... | @@ -313,7 +313,6 @@ public class RuleChainActorMessageProcessor extends ComponentMsgProcessor<RuleCh |
313 | 313 | switch (target.getEntityType()) { |
314 | 314 | case RULE_NODE: |
315 | 315 | pushMsgToNode(nodeActors.get(new RuleNodeId(target.getId())), msg, fromRelationType); |
316 | - pushUpdatesToEdges(msg); | |
317 | 316 | break; |
318 | 317 | case RULE_CHAIN: |
319 | 318 | parent.tell(new RuleChainToRuleChainMsg(new RuleChainId(target.getId()), entityId, msg, fromRelationType), self); |
... | ... | @@ -347,6 +346,7 @@ public class RuleChainActorMessageProcessor extends ComponentMsgProcessor<RuleCh |
347 | 346 | |
348 | 347 | private void pushMsgToNode(RuleNodeCtx nodeCtx, TbMsg msg, String fromRelationType) { |
349 | 348 | if (nodeCtx != null) { |
349 | + pushUpdatesToEdges(msg); | |
350 | 350 | nodeCtx.getSelfActor().tell(new RuleChainToRuleNodeMsg(new DefaultTbContext(systemContext, nodeCtx), msg, fromRelationType), self); |
351 | 351 | } else { |
352 | 352 | log.error("[{}][{}] RuleNodeCtx is empty", entityId, ruleChainName); | ... | ... |