Skip to content

Commit 29e83cc

Browse files
Do not use a timeout for the blocker.
1 parent cce4c75 commit 29e83cc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Lib/test/test_concurrent_futures/test_interpreter_pool.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,8 +360,8 @@ def test_blocking(self):
360360

361361
def run(taskid, ready, blocker):
362362
ready.put_nowait(taskid)
363-
blocker.get(timeout=10) # blocking
364-
# blocker.get() # blocking
363+
# blocker.get(timeout=20) # blocking
364+
blocker.get() # blocking
365365

366366
numtasks = 10
367367
futures = []

0 commit comments

Comments
 (0)