mirror of
https://github.com/fastapi/fastapi.git
synced 2026-01-29 16:31:15 -05:00
📝 Improve naming of middleware in SQLAlchemy tutorial
This commit is contained in:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user