Update applications.py

This commit is contained in:
Gabriel 2024-05-03 21:24:51 -04:00 committed by GitHub
parent 44df0185d0
commit 071ec3f322
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -4523,7 +4523,10 @@ class FastAPI(Starlette):
@app.middleware("http")
async def add_process_time_header(request: Request, call_next: Callable[[Request], Awaitable[Response]):
async def add_process_time_header(
request: Request,
call_next: Callable[[Request], Awaitable[Response]
) -> Response:
start_time = time.time()
response = await call_next(request)
process_time = time.time() - start_time