Hi there! I'm writing a flow that is orchestrating external jobs via HTTP requests. The HTTP client supports async and thus I'm making my flow and tasks async functions. If using async is there a preference on still using
.map
vs
asyncio.gather
on a list of started async tasks? Thanks!