Skip to content

Commit 7a64e68

Browse files
Changed timeout to 0.5
1 parent a224c6f commit 7a64e68

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/multiprocessing/managers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def accepter(self):
193193
handler_threads = []
194194
while True and not self.stop_event.is_set():
195195
try:
196-
self.listener.settimeout(3)
196+
self.listener.settimeout(0.5)
197197
c = self.listener.accept()
198198
except OSError:
199199
continue

0 commit comments

Comments
 (0)