In the UI you can add 'parent' column and filter by parent
I want to get the instances of the tasks executed by this controller task
How do I get all children tasks given a parent?
WackyRabbit7 I don't believe there is currently a 'children' section for a task. You could try managing the children to access them later.
One option is add_pipeline_tags(True)
this should mark all the child tasks with a tag of the parent task
IIRC these tasks have the pipeline as parent, so getting them and using the
parent
in the task_filter should work, I guess
🙂
By access do you mean do Task.get_task()
?
IIRC these tasks have the pipeline as parent, so getting them and using the parent
in the task_filter should work, I guess