Skip to content

Commit c0280d1

Browse files
vstinnermiss-islington
authored andcommitted
pythongh-109702: Increase concurrent_futures deadlock timeout (pythonGH-109703)
Replace SHORT_TIMEOUT with LONG_TIMEOUT in test_deadlock of test_concurrent_futures. (cherry picked from commit 1eb1b45) Co-authored-by: Victor Stinner <[email protected]>
1 parent 4a0c118 commit c0280d1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_concurrent_futures/test_deadlock.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ def __reduce__(self):
8888

8989

9090
class ExecutorDeadlockTest:
91-
TIMEOUT = support.SHORT_TIMEOUT
91+
TIMEOUT = support.LONG_TIMEOUT
9292

9393
def _fail_on_deadlock(self, executor):
9494
# If we did not recover before TIMEOUT seconds, consider that the

0 commit comments

Comments
 (0)