5

您如何将 a 分配给流程name中的merge任务?

thing_three = merge(thing_one, thing_two)

最终目标是merge使用检索flow.get_tasks(name="thing_merger")

提前致谢。

4

1 回答 1

5

处理此问题的最直接方法是使用:

thing_three = merge(thing_one, thing_two)

thing_three.name = "thing_merger"

然后当你打电话时flow.get_tasks(name="thing_merger"),它会返回:

[<Task: thing_merger>]
于 2020-06-19T15:34:49.290 回答