尝试从Dataflowshell运行具有多个参数的组合任务。 但是在子任务中,仅接收第一个参数。 为参数传递的输入以空格分隔。
尝试过 spring-cloud-dataflow-shell-1.7.4.RELEASE
task create composedBatchTestTask1 --definition "customBatchApp1 && customBatchApp2"
task launch composedBatchTestTask1 --arguments "--composed-task-arguments=input1=arg1 input2=arg2 input3=arg3"
子任务参数中的预期结果:
input1=arg1
input2=arg2
input3=arg3
子任务参数中的实际结果:
input1=arg1