diff --git a/bbot/scanner/scanner.py b/bbot/scanner/scanner.py index 12ac280d5a..ecc4d31e44 100644 --- a/bbot/scanner/scanner.py +++ b/bbot/scanner/scanner.py @@ -255,7 +255,7 @@ def __init__( mp.set_start_method("spawn") except Exception: self.warning(f"Failed to set multiprocessing spawn method. This may negatively affect performance.") - self.process_pool = ProcessPoolExecutor(max_tasks_per_child=100) + self.process_pool = ProcessPoolExecutor() self._stopping = False diff --git a/pyproject.toml b/pyproject.toml index acc37b04d4..d13015ed3f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -90,7 +90,7 @@ line-length = 119 [tool.poetry-dynamic-versioning] enable = true metadata = false -format-jinja = 'v1.1.2{% if branch == "dev" %}.{{ distance }}rc{% endif %}' +format-jinja = 'v1.1.3{% if branch == "dev" %}.{{ distance }}rc{% endif %}' [tool.poetry-dynamic-versioning.substitution] files = ["*/__init__.py"]