Skip to content

Commit

Permalink
fix: pass the condition context to the trigger service
Browse files Browse the repository at this point in the history
  • Loading branch information
loicmathieu committed Jun 27, 2024
1 parent c7aabab commit af013fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public Publisher<Execution> evaluate(ConditionContext conditionContext, TriggerC
.build();
return Flux
.from(publisher(task, conditionContext.getRunContext()))
.map(event -> TriggerService.generateRealtimeExecution(this, context, event));
.map(event -> TriggerService.generateRealtimeExecution(this, conditionContext, context, event));
}

public Publisher<EventDataOutput> publisher(final Consume task,
Expand Down

0 comments on commit af013fe

Please sign in to comment.