Changes between Initial Version and Version 1 of Ticket #35496
- Timestamp:
- Jun 5, 2024, 5:34:46 AM (6 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #35496
- Property Resolution → invalid
- Property Status new → closed
-
Ticket #35496 – Description
initial v1 5 5 I made a workaround by implementing a custom ExceptionReporter which closes connections afterwards. 6 6 7 {{{ 7 8 class CustomExceptionReporter(ExceptionReporter): 8 9 def get_traceback_text(self): … … 10 11 close_old_connections() 11 12 return res 13 }}} 12 14 13 15 Is my approach correct or am I destroying something else?