Hi @<1533619725983027200:profile|BattyHedgehong22>
Can you elaborate ? what do you mean params file ?
Is this something like:
Task.current_task().connect_configuration('my_conf.json', name="my conf file")
I have a json file specifying some required input for my executing pipeline function. So how can I give that to connect the pipeline to my input
Is their anything similar to this in a Pipeline Decorater
Task.current_task().connect_configuration('my_conf.json', name="my conf file")
The pipeline itself is also a task, so this line works in a pipeline. Task.current_task is a class method that returns the running task (pipeline in our case), then then the usual interface. BTW what are you having in the conf file ?