Hi, If I have two tasks in a flow that have no interdependency, how do I make them run concurrently?
For instance, this seems to cause task2 to wait until task1 finishes although task2 isn't dependent on task1.
Copy code
with Flow('') as flow
r=task1()
r2=task2()
task3(r)
flow.run()
m
Marwan Sarieddine
10/19/2020, 12:11 AM
Hi - you won't get concurrency calling flow.run in local mode by default ...
j
Jasono
10/19/2020, 12:13 AM
How about in server mode? How do I make it run concurrently? Can't seem to find documentation on that.