https://prefect.io logo
g

Giuliano Mega

11/10/2022, 12:12 PM
And since I'm already asking: is the way I'm writing my flow correct? Or is it dispatching tasks to a different task runner cause I'm not calling submit? If the latter, how can I use
map
with a custom task runner?
1
r

Ryan Peden

11/10/2022, 1:25 PM
It looks correct.
map
ends up submitting to your flow's task runner, so your mapped tasks in this flow should run in a
SequentialTaskRunner
.
g

Giuliano Mega

11/10/2022, 2:43 PM
Alright, thank you!
6 Views