Matthias
05/08/2020, 10:24 PMtask1
and task2
(defined by the @task
decorator), which are both storing data in a database. for integrity i need to make sure that task1
finished before task2
starts. the tasks do not need to return anything. how do i make the dependency explicit and tell task2
to wait for task1
?Chris White
flow = Flow("my-flow")
task2.set_upstream(task1, flow=flow)
Matthias
05/08/2020, 10:28 PMChris White
Marvin
05/08/2020, 10:29 PM