简体   繁体   中英

How to assign a name to a control_flow in prefect?

How do you assign a name to a merge task in a flow?

thing_three = merge(thing_one, thing_two)

The ultimate goal is to retrieve merge using flow.get_tasks(name="thing_merger")

Thanks in advance.

The most straightforward way to handle this would be to use:

thing_three = merge(thing_one, thing_two)

thing_three.name = "thing_merger"

Then when you call flow.get_tasks(name="thing_merger") , it'll return:

[<Task: thing_merger>]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM