Skip to content
This repository has been archived by the owner on Dec 13, 2023. It is now read-only.

[WIP] JSON_JQ inside DO_WHILE task #3046

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,11 @@ public boolean execute(
}
}
Collection<TaskModel> loopOverTasks = relevantTasks.values();

// Check for any JSON_JQ task within do-while task.
// If yes find all task after json-jq and create dummy task model and add it in relevant task map so that
// Loop task does not schedule next iteration abruptly.

LOGGER.debug(
"Workflow {} waiting for tasks {} to complete iteration {}",
workflow.getWorkflowId(),
Expand Down