From 4da5a7440a06418237c73a83ddfa01bfc9999c8c Mon Sep 17 00:00:00 2001 From: Lion Kortlepel Date: Thu, 9 Apr 2026 18:08:53 +0200 Subject: [PATCH] increase http curl pool to 128 --- src/Http.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Http.cpp b/src/Http.cpp index ed075d6..98bb6ce 100644 --- a/src/Http.cpp +++ b/src/Http.cpp @@ -43,7 +43,7 @@ struct CurlDeleter { static std::mutex gCurlPoolMutex; static std::map gCurlPool; // false = free, true = in use -constexpr size_t MAX_CURL_POOL_SIZE = 8; +constexpr size_t MAX_CURL_POOL_SIZE = 128; static CURL* AcquireCurl() { std::unique_lock Lock(gCurlPoolMutex);