Closed MarchenkoRoman closed 9 months ago
fastapi >=0.106 has breaking changes, was removed AsyncExitStack from concurrency
To Fix: change import from fastapi.concurrency import AsyncExitStack to: from contextlib import AsyncExitStack
@MarchenkoRoman Can you create a PR?
Thanks @MarchenkoRoman , the issue is fixed, please check the new release.
fastapi >=0.106 has breaking changes, was removed AsyncExitStack from concurrency
To Fix: change import from fastapi.concurrency import AsyncExitStack to: from contextlib import AsyncExitStack