Skip to content

Commit

Permalink
Merge pull request #820 from blacklanternsecurity/emergency-bugfix
Browse files Browse the repository at this point in the history
Emergency Bugfix for Python3.9/3.10
  • Loading branch information
TheTechromancer authored Nov 4, 2023
2 parents a5df7b3 + 5bfb82a commit 2d97c48
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bbot/scanner/scanner.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.1{% if branch == "dev" %}.{{ distance }}rc{% endif %}'

[tool.poetry-dynamic-versioning.substitution]
files = ["*/__init__.py"]

0 comments on commit 2d97c48

Please sign in to comment.