We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb56776 commit 5b16d47Copy full SHA for 5b16d47
fastapi_async_sqlalchemy/__init__.py
@@ -2,4 +2,4 @@
2
3
__all__ = ["db", "SQLAlchemyMiddleware"]
4
5
-__version__ = "0.3.8"
+__version__ = "0.3.9"
fastapi_async_sqlalchemy/middleware.py
@@ -11,7 +11,7 @@
11
12
from fastapi_async_sqlalchemy.exceptions import MissingSessionError, SessionNotInitialisedError
13
14
-_Session: sessionmaker = None
+_Session: Optional[sessionmaker] = None
15
_session: ContextVar[Optional[AsyncSession]] = ContextVar("_session", default=None)
16
17
@@ -42,8 +42,7 @@ def __init__(
42
43
async def dispatch(self, request: Request, call_next: RequestResponseEndpoint):
44
async with db(commit_on_exit=self.commit_on_exit):
45
- response = await call_next(request)
46
- return response
+ return await call_next(request)
47
48
49
class DBSessionMeta(type):
0 commit comments