📝 Improve naming of middleware in SQLAlchemy tutorial

This commit is contained in:
Sebastián Ramírez
2019-02-21 10:15:39 +04:00
parent 22f4e18cdd
commit 9051ec3816
2 changed files with 3 additions and 1 deletions

View File

@@ -60,7 +60,7 @@ def read_user(request: Request, user_id: int):
@app.middleware("http")
async def close_db(request: Request, call_next):
async def db_session_middleware(request: Request, call_next):
request.state.db = Session()
response = await call_next(request)
request.state.db.close()