Esdras Lopes Nani
09/29/2022, 5:43 PMTask run 'b' - Completed()
. If I force task c to be async runs without a problem. Is that a current bug? Using Prefect 2.3.1
@task
async def a():
# do async
@task
async def b():
# do async
@task
def c():
# do sync
@flow
async def main():
a = await a()
b = await b(wait_for=[a])
c = c(wait_for=[b])
asyncio.run(main())
Thanks!Serina
09/29/2022, 6:36 PM