mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
Issue #21362: concurrent.futures does not validate that max_workers is proper
This commit is contained in:
parent
120e8edfb8
commit
20efceb757
4 changed files with 15 additions and 0 deletions
|
@ -334,6 +334,9 @@ class ProcessPoolExecutor(_base.Executor):
|
|||
if max_workers is None:
|
||||
self._max_workers = os.cpu_count() or 1
|
||||
else:
|
||||
if max_workers <= 0:
|
||||
raise ValueError("max_workers must be greater than 0")
|
||||
|
||||
self._max_workers = max_workers
|
||||
|
||||
# Make the call queue slightly larger than the number of processes to
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue