Issue #21362: concurrent.futures does not validate that max_workers is proper

This commit is contained in:
Brian Quinlan 2014-05-17 13:51:10 -07:00
parent 120e8edfb8
commit 20efceb757
4 changed files with 15 additions and 0 deletions

View file

@ -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