From 14c360f62bcb493dafe91e976fa426e2a2f38604 Mon Sep 17 00:00:00 2001 From: piepie62 Date: Tue, 28 Jan 2020 17:23:09 -0700 Subject: [PATCH] Decrease default timeout to 10s --- common/source/utils/fetch.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/source/utils/fetch.cpp b/common/source/utils/fetch.cpp index bace9feec..0e6ea9633 100644 --- a/common/source/utils/fetch.cpp +++ b/common/source/utils/fetch.cpp @@ -87,7 +87,7 @@ std::shared_ptr Fetch::init(const std::string& url, bool ssl, std::string fetch->setopt(CURLOPT_USERAGENT, "PKSM-curl/7.59.0"); fetch->setopt(CURLOPT_FOLLOWLOCATION, 1L); fetch->setopt(CURLOPT_LOW_SPEED_LIMIT, 300L); - fetch->setopt(CURLOPT_LOW_SPEED_TIME, 30); + fetch->setopt(CURLOPT_LOW_SPEED_TIME, 10L); } else {