Changes between Version 7 and Version 8 of Ticket #35672
- Timestamp:
- Aug 18, 2024, 6:12:16 AM (3 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35672 – Description
v7 v8 8 8 Further investigation shows the reason was a Threaded Middleware orm interaction, like this simplified code. 9 9 10 {{{ 10 11 class TimeMonitorMiddleware(object): 11 12 batched_logs: List[RequestLog] = [] … … 19 20 20 21 return response 22 }}} 23 21 24 22 25