Commit 829fcd06 authored by Victor Stinner's avatar Victor Stinner Committed by GitHub

bpo-33540: Fix socketserver.ThreadingMixIn if block_on_close=False (GH-7310)

socketserver.ThreadingMixIn no longer tracks active threads if
block_on_close is false.
parent e905c844
......@@ -655,7 +655,7 @@ class ThreadingMixIn:
t = threading.Thread(target = self.process_request_thread,
args = (request, client_address))
t.daemon = self.daemon_threads
if not t.daemon:
if not t.daemon and self.block_on_close:
if self._threads is None:
self._threads = []
self._threads.append(t)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment