Sylvain Hazard
08/22/2023, 2:54 PM@flow
def my_flow():
a = task_A()
b = task_B(upstream_tasks=[a]) # I really really need B to run after A but B doesn't need result from A
Sanz Al
08/22/2023, 3:02 PMwait_for
. Here the docsSylvain Hazard
08/22/2023, 3:03 PM