summaryrefslogtreecommitdiff
path: root/lib/git/async/thread.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/git/async/thread.py')
-rw-r--r--lib/git/async/thread.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/git/async/thread.py b/lib/git/async/thread.py
index f875f094..f7f0c978 100644
--- a/lib/git/async/thread.py
+++ b/lib/git/async/thread.py
@@ -15,9 +15,6 @@ def do_terminate_threads(whitelist=list()):
continue
if whitelist and t not in whitelist:
continue
- if isinstance(t, WorkerThread):
- t.inq.put(t.quit)
- # END worker special handling
t.stop_and_join()
# END for each thread