increase http curl pool to 128

This commit is contained in:
Lion Kortlepel
2026-04-09 18:08:53 +02:00
parent b1946ef1d9
commit 4da5a7440a
+1 -1
View File
@@ -43,7 +43,7 @@ struct CurlDeleter {
static std::mutex gCurlPoolMutex;
static std::map<CURL*, bool> 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);