Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Lib/test/test_concurrent_futures/executor.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,9 @@ def test_map_timeout(self):
else:
self.fail('expected TimeoutError')

self.assertEqual([None, None], results)
# gh-110097: On heavily loaded systems, the launch of the worker may
# take longer than the specified timeout.
self.assertIn(results, ([None, None], [None], []))

def test_shutdown_race_issue12456(self):
# Issue #12456: race condition at shutdown where trying to post a
Expand Down
Loading