cancel
Showing results for 
Search instead for 
Did you mean: 

How to check the parameters passed from parent to child pipeline

amit_saroha
New Contributor III

Hi,

I am running into a situation where when I submit one pipeline from a parent it runs but didn’t do the desired processing however when I run it individually it runs fine.

How do I get to know what parameters are passed from parent to child? and why does it don not work when calling from the parent pipeline? Is there any way to track it?

5 REPLIES 5

virender_prajap
New Contributor III

You can see the parameter value in the dashboard from pipeline properties if you have checked capture option in pipeline properties of the child pipeline.
Alternatively, you can check the parameter in child pipeline using pipe.args
Example: pipe.args.hasPath('your_parameter') ? 'present' : 'not present'