1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-18 22:38:07 +00:00

Fix AsyncSession handling after breaking changes in FastAPI 0.74.0

See https://github.com/tiangolo/fastapi/releases/tag/0.74.0 for details.
This commit is contained in:
grossmj 2022-03-20 16:25:48 +10:00
parent 9b39bfb845
commit 8975f63e2f

View File

@ -24,11 +24,11 @@ from gns3server.db.repositories.base import BaseRepository
async def get_db_session(request: HTTPConnection) -> AsyncSession:
session = AsyncSession(request.app.state._db_engine, expire_on_commit=False)
try:
yield session
finally:
await session.close()
async with AsyncSession(request.app.state._db_engine, expire_on_commit=False) as session:
try:
yield session
finally:
await session.close()
def get_repository(repo: Type[BaseRepository]) -> Callable: