Finding workflow run configuration #6123
-
|
I start a workflow with --project eridani This workflow starts, and within this workflow I use another workflow. The run_configuration was 'local' but changed it in every workflow and pipeline to eridani. <run_configuration>eridani</run_configuration> Why I got this error? Where is it looking for the workflow run configuration? I would expect that If the parent workflow can find it, that the child workflow also can find it. 2025/12/04 15:17:56 - tr_zorgoporde_extractie_based_on_itsm - Execution finished on a local pipeline engine with run configuration 'eridani' |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Run configuration must be set in the workflow action, not just child workflow XML. In ActionWorkflow.java, it reads from action config, not the child's XML. Open parent workflow → double-click the action → set "Run configuration" to "eridani" there. |
Beta Was this translation helpful? Give feedback.
I figured out the reason why it didn't work. Within Pentaho you put in the name of the job or transformation without the extension. Within HOP it also needs the extension. Because we used a parameter for the job/transformation name (without the extension), HOP couldn't find this workflow/pipeline. The ERROR message is very confusing.