Skip to content
Snippets Groups Projects
Commit d0c99b75 authored by Theodore Chang's avatar Theodore Chang
Browse files

Change Profiler mode to 'strict' for enhanced performance tracking

parent 675a93bf
Branches
Tags
2 merge requests!2421Removed direct infrastructure dependency from mkdocs macros,!2416Change Profiler mode to 'strict' for enhanced performance tracking
Pipeline #254608 passed
......@@ -64,7 +64,7 @@ async def profile_request(request: Request, call_next):
if not request.query_params.get('__profile__', False):
return await call_next(request)
with Profiler(async_mode='enabled') as profiler:
with Profiler(async_mode='strict') as profiler:
await call_next(request)
return HTMLResponse(profiler.output_html())
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment