default connect_timeout to 5 instead of extlib 10

This commit is contained in:
Mikael Nordfeldth 2016-01-18 22:01:45 +01:00
parent 64e74d527f
commit 89dd44bf3e
2 changed files with 2 additions and 0 deletions

View File

@ -353,6 +353,7 @@ $default =
array('ssl_cafile' => false, // To enable SSL cert validation, point to a CA bundle (eg '/usr/lib/ssl/certs/ca-certificates.crt') (this activates "ssl_verify_peer")
'ssl_verify_host' => true, // HTTPRequest2 makes sure this is set to CURLOPT_SSL_VERIFYHOST==2 if using curl
'curl' => false, // Use CURL backend for HTTP fetches if available. (If not, PHP's socket streams will be used.)
'connect_timeout' => 5,
'proxy_host' => null,
'proxy_port' => null,
'proxy_user' => null,

View File

@ -121,6 +121,7 @@ class HTTPClient extends HTTP_Request2
function __construct($url=null, $method=self::METHOD_GET, $config=array())
{
$this->config['connect_timeout'] = common_config('http', 'connect_timeout') ?: $this->config['connect_timeout'];
$this->config['max_redirs'] = 10;
$this->config['follow_redirects'] = true;