I'm trying to launch a composed task via scdf shell. The arguments are not passed to the child tasks properly
Composed-task definition :
composed-task --graph='app1 && app2'
Command to launch from shell:
task launch composed-task-name --arguments "--name=test"
The arguments are passed and executed within composed-task jar instead of child tasks and getting failed. while using the web UI, there is an option called composed-task-arguments which recognize the argument as child tasks' argument.
Composed-task-definition in web UI:
composed-task --graph='app1 && app2' --composed-task-arguments ='--name=test'
--composed-task-arguments is not recognized in data shell. Only --arguments is valid. How do I pass arguments only to child tasks from data shell ?