Skip to content
This repository has been archived by the owner on Dec 16, 2020. It is now read-only.

Commit

Permalink
reduce timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
GangZhuo committed Feb 18, 2016
1 parent e45365c commit 3d3af83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pcs/pcs_http.c
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,7 @@ PCS_API PcsHttp pcs_http_create(const char *cookie_file)
}
curl_easy_setopt(http->curl, CURLOPT_SSL_VERIFYPEER, 0L);
curl_easy_setopt(http->curl, CURLOPT_SSL_VERIFYHOST, 0L);
curl_easy_setopt(http->curl, CURLOPT_LOW_SPEED_LIMIT, 10240L);
curl_easy_setopt(http->curl, CURLOPT_LOW_SPEED_LIMIT, 1024L);
curl_easy_setopt(http->curl, CURLOPT_LOW_SPEED_TIME, 60L);
curl_easy_setopt(http->curl, CURLOPT_SSL_VERIFYHOST, 0L);
curl_easy_setopt(http->curl, CURLOPT_USERAGENT, USAGE);
Expand Down

0 comments on commit 3d3af83

Please sign in to comment.