Skip to content

Commit

Permalink
Decrease default timeout to 10s
Browse files Browse the repository at this point in the history
  • Loading branch information
piepie62 committed Jan 29, 2020
1 parent 4a67512 commit 14c360f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/source/utils/fetch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ std::shared_ptr<Fetch> 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
{
Expand Down

0 comments on commit 14c360f

Please sign in to comment.