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

Merge branch 'tlc/strict-mode' into 'develop'

Change Profiler mode to 'strict' for enhanced performance tracking

See merge request !2416
parents 675a93bf d0c99b75
No related branches found
No related tags found
2 merge requests!2421Removed direct infrastructure dependency from mkdocs macros,!2416Change Profiler mode to 'strict' for enhanced performance tracking
Pipeline #254611 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.
Finish editing this message first!
Please register or to comment