From f9722c4620305e549ed8f9d32a6f0cbf5e71f664 Mon Sep 17 00:00:00 2001 From: Yomguithereal Date: Mon, 15 Apr 2024 15:30:02 +0200 Subject: [PATCH] Increasing default num_pools to 4 Fix #946 --- minet/web.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/minet/web.py b/minet/web.py index b49719cb11..62514cc4d1 100644 --- a/minet/web.py +++ b/minet/web.py @@ -126,7 +126,7 @@ def looks_like_html(html_chunk: bytes) -> bool: def create_pool_manager( proxy: Optional[str] = None, parallelism: int = 1, - num_pools: Optional[int] = None, + num_pools: int = 4, insecure: bool = False, spoof_tls_ciphers: bool = False, **kwargs,