Changes between Initial Version and Version 1 of Ticket #35496


Ignore:
Timestamp:
Jun 5, 2024, 5:34:46 AM (4 months ago)
Author:
Mariusz Felisiak
Comment:

Thanks for the ticket, however it's a support question and Trac is not a support channel, check out TicketClosingReasons/UseSupportChannels.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #35496

    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #35496 – Description

    initial v1  
    55I made a workaround by implementing a custom ExceptionReporter which closes connections afterwards.
    66
     7{{{
    78class CustomExceptionReporter(ExceptionReporter):
    89    def get_traceback_text(self):
     
    1011        close_old_connections()
    1112        return res
     13}}}
    1214
    1315Is my approach correct or am I destroying something else?
Back to Top