Skip to content

Commit

Permalink
Merge pull request #654 from skrivy/master
Browse files Browse the repository at this point in the history
Do not force IPv4 protocol by default
  • Loading branch information
Jean85 authored Oct 4, 2018
2 parents 44b341b + d19cc6d commit 37a2df7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Raven/Client.php
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ public function __construct($options_or_dsn = null, $options = array())
$this->send_callback = Raven_Util::get($options, 'send_callback', null);
$this->curl_method = Raven_Util::get($options, 'curl_method', 'sync');
$this->curl_path = Raven_Util::get($options, 'curl_path', 'curl');
$this->curl_ipv4 = Raven_Util::get($options, 'curl_ipv4', true);
$this->curl_ipv4 = Raven_Util::get($options, 'curl_ipv4', false);
$this->ca_cert = Raven_Util::get($options, 'ca_cert', static::get_default_ca_cert());
$this->verify_ssl = Raven_Util::get($options, 'verify_ssl', true);
$this->curl_ssl_version = Raven_Util::get($options, 'curl_ssl_version');
Expand Down

0 comments on commit 37a2df7

Please sign in to comment.