From cb7356046467b0beef5399995a68120e2a1a645e Mon Sep 17 00:00:00 2001 From: TheTechromancer Date: Tue, 6 Feb 2024 12:54:29 -0500 Subject: [PATCH] increase qsize for speculate and excavate --- bbot/modules/internal/excavate.py | 1 + bbot/modules/internal/speculate.py | 1 + 2 files changed, 2 insertions(+) diff --git a/bbot/modules/internal/excavate.py b/bbot/modules/internal/excavate.py index 5ccc8d36a5..e4fe1c4760 100644 --- a/bbot/modules/internal/excavate.py +++ b/bbot/modules/internal/excavate.py @@ -340,6 +340,7 @@ class excavate(BaseInternalModule): meta = {"description": "Passively extract juicy tidbits from scan data"} scope_distance_modifier = None + _qsize = 10000 async def setup(self): self.csp = CSPExtractor(self) diff --git a/bbot/modules/internal/speculate.py b/bbot/modules/internal/speculate.py index 7aaf12d306..c039b3b1b1 100644 --- a/bbot/modules/internal/speculate.py +++ b/bbot/modules/internal/speculate.py @@ -35,6 +35,7 @@ class speculate(BaseInternalModule): } scope_distance_modifier = 1 _priority = 4 + _qsize = 10000 async def setup(self): scan_modules = [m for m in self.scan.modules.values() if m._type == "scan"]