Is it possible to have async task inside regular w...
# flyte-support
b
Is it possible to have async task inside regular workflow? Or do I need eager workflow. Specifically, I'm trying to
await async.gather(...)
inside a task
f
You can have it but create your own async io loop. Regular workflow cannot have async tasks as you cannot call async from sync
We are working on full asyncification