excon 0.69.0 → 0.69.1
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of excon might be problematic. Click here for more details.
- checksums.yaml +4 -4
- data/lib/excon/ssl_socket.rb +1 -1
- data/lib/excon/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6f82c6493494b9f91d12d2bf5e53744ebc72c7b5aa790a383dfe62ff12785d87
|
4
|
+
data.tar.gz: 3b5eaba34c5658aad2aaab72d332315cdf503bdf292a2a89cbaf8b177bf27897
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1424e4f10eb40b1d59b5a3731c1c384f6c923ae405ae9752ee7a9d2a04f2fb47ed412a41394fdce0c2e5be86f5e0c200b7b9c17dcff7b1ee6738c478ba103777
|
7
|
+
data.tar.gz: eab43030c2895c4b4677fc2c1b91027a51e8cac813a0ee897fc7f5e2bbb5fef4db2925e8e5ff3ac5a5b53968a1725e895585ffd6d6d2fffffd24899f432902ca
|
data/lib/excon/ssl_socket.rb
CHANGED
@@ -108,7 +108,7 @@ module Excon
|
|
108
108
|
|
109
109
|
# eat the proxy's connection response
|
110
110
|
response = Excon::Response.parse(self, :expects => 200, :method => 'CONNECT')
|
111
|
-
if response[:status] != 200
|
111
|
+
if response[:response][:status] != 200
|
112
112
|
raise(Excon::Errors::ProxyConnectionError.new("proxy connection is not exstablished"))
|
113
113
|
end
|
114
114
|
end
|
data/lib/excon/version.rb
CHANGED