From: Michael Tremer Date: Mon, 20 Jul 2026 09:19:22 +0000 (+0000) Subject: checker: Use fewer workers X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=67227ecb2ac224ccf520d9b9120e3c3d90afc657;p=dbl.git checker: Use fewer workers It seems that we ran into ratelimiting and timeouts when processing to many domains at the same time. Slowing the rate makes the result more reliable. Signed-off-by: Michael Tremer --- diff --git a/src/dbl/checker.py b/src/dbl/checker.py index 0e4a5ed..0023876 100644 --- a/src/dbl/checker.py +++ b/src/dbl/checker.py @@ -41,7 +41,7 @@ class Checker(object): self.backend = backend # Initialize the executor - self.executor = concurrent.futures.ThreadPoolExecutor(max_workers=1024) + self.executor = concurrent.futures.ThreadPoolExecutor(max_workers=64) # Initialize the resolver self.resolver = dns.resolver.Resolver()