KG
03/22/2024, 5:34 PMdef flow():
_ = taskA() #create table
taskB() #insert into table
If taskA requires taskB to complete first, should taskB use wait_for=[_]
Flows defined without the wait_for appear to be completing the tasks sequently anyway. Does the flow know to complete taskA before taskB regardless?