Skip to content

Commit

Permalink
fix(webserver): continue to warn, but do not return trigger with miss…
Browse files Browse the repository at this point in the history
…ing flow (#6905)

close #5998
  • Loading branch information
Skraye authored Jan 23, 2025
1 parent 22157fd commit 0eb13ba
Showing 1 changed file with 0 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,6 @@ public PagedResults<Triggers> search(
if (flow.isEmpty()) {
// Warn instead of throwing to avoid blocking the trigger UI
log.warn(String.format("Flow %s not found for trigger %s", tc.getFlowId(), tc.getTriggerId()));
triggers.add(Triggers.builder()
.abstractTrigger(null)
.triggerContext(tc)
.build()
);

return;
}
Expand Down

0 comments on commit 0eb13ba

Please sign in to comment.