mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
Somewhat nicer handling of errors after thread termination.
This commit is contained in:
parent
ba7437abcb
commit
721e2c8277
@ -213,15 +213,8 @@ class TCPServer:
|
||||
self.handle_connection(request, client_address)
|
||||
request.close()
|
||||
except:
|
||||
try:
|
||||
self.handle_error(request, client_address)
|
||||
request.close()
|
||||
# Why a blanket except here? In some circumstances, a thread can
|
||||
# persist until the interpreter exits. When this happens, all modules
|
||||
# and builtins are set to None, and things balls up in indeterminate
|
||||
# ways.
|
||||
except:
|
||||
pass
|
||||
|
||||
def serve_forever(self, poll_interval=0.1):
|
||||
self.__is_shut_down.clear()
|
||||
@ -257,9 +250,13 @@ class TCPServer:
|
||||
"""
|
||||
Called when handle_connection raises an exception.
|
||||
"""
|
||||
# If a thread has persisted after interpreter exit, the module might be
|
||||
# none.
|
||||
if traceback:
|
||||
exc = traceback.format_exc()
|
||||
print >> fp, '-'*40
|
||||
print >> fp, "Error processing of request from %s:%s"%client_address
|
||||
print >> fp, traceback.format_exc()
|
||||
print >> fp, "Error in processing of request from %s:%s"%client_address
|
||||
print >> fp, exc
|
||||
print >> fp, '-'*40
|
||||
|
||||
def handle_connection(self, request, client_address): # pragma: no cover
|
||||
|
Loading…
Reference in New Issue
Block a user