Commit b1ae725b authored by Benjamin Peterson's avatar Benjamin Peterson

kill another set_daemon instance

parent 0fb2b335
......@@ -566,7 +566,7 @@ class ThreadingMixIn:
t = threading.Thread(target = self.process_request_thread,
args = (request, client_address))
if self.daemon_threads:
t.set_daemon(True)
t.daemon = True
t.start()
......
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