Skip to content

Commit 74978ae

Browse files
[3.11] gh-109702: Increase concurrent_futures deadlock timeout (GH-109703) (#109708)
gh-109702: Increase concurrent_futures deadlock timeout (GH-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 43ff8fc commit 74978ae

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)