How to check the parameters passed from parent to child pipeline
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
07-05-2022 08:46 AM
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?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2023 12:27 AM - edited 08-08-2023 12:46 AM
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'
