-
Notifications
You must be signed in to change notification settings - Fork 387
Description
Apache Hop version?
2.13
Java version?
17
Operating system
Windows
What happened?
The JOIN action does not work with RemoteWorkflowEngine, the reason being that the interactive mode is not activated.
I suggest removing the IF condition that check if interactive mode is enabled, and adding/removing active actions to list.
The JOIN action use active actions to work.
if (interactive) {
getActiveActions().add(actionMeta.clone());
}
...
if (interactive) {
getActiveActions().remove(actionMeta);
}
The interactive mode is only used in actions (Workflow and Repeat) to register action listeners if interactive mode is enabled.
if (parentWorkflow.isInteractive()) {
workflow.setInteractive(true);
workflow.getActionListeners().addAll(parentWorkflow.getActionListeners());
}
Issue Priority
Priority: 3
Issue Component
Component: Actions