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
How do I get all children tasks given a parent?
I want to get the instances of the tasks executed by this controller task
In the UI you can add 'parent' column and filter by parent
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()
?