Skip to content

Commit

Permalink
修复事件无效
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou-hao committed Sep 23, 2021
1 parent 58511d9 commit 29b79fb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ public AbstractExecutionContext(String workerId,
this.eventOutputs = eventOutputs
.entrySet()
.stream()
.collect(Collectors.toMap(Map.Entry::getKey, e -> RuleEngineHooks.wrapOutput(output)));
.collect(Collectors.toMap(Map.Entry::getKey, e -> RuleEngineHooks.wrapOutput(e.getValue())));
this.logger = CompositeLogger.of(logger, new EventLogger(eventBus, job.getInstanceId(), job.getNodeId(), workerId));
this.globalScope = globalScope;
}
Expand Down

0 comments on commit 29b79fb

Please sign in to comment.