Hey all, please tell me how to set up the task launch sequence. For example at me one task deletes the data, the second task interposes the data. I need to run the delete first, and after insert data
k
Kevin Kho
01/18/2022, 3:39 PM
You can do:
Copy code
with Flow(...) as flow:
a = task_a()
b = task_b(upstream_tasks=[a])