Skip to content

Commit 62d1281

Browse files
committed
Hanging process fix
1 parent 54671ea commit 62d1281

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

hstest/common/process_utils.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import threading
44
import weakref
55
from concurrent.futures import ThreadPoolExecutor
6-
from concurrent.futures.thread import _threads_queues, _worker
6+
from concurrent.futures.thread import _worker
77
from typing import TYPE_CHECKING
88

99
if TYPE_CHECKING:
@@ -48,7 +48,6 @@ def weakref_cb(_, q=self._work_queue) -> None:
4848
t.daemon = True
4949
t.start()
5050
self._threads.add(t)
51-
_threads_queues[t] = self._work_queue
5251

5352

5453
def is_port_in_use(port):

0 commit comments

Comments
 (0)