diff options
author | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-07 08:53:06 +0000 |
---|---|---|
committer | gotoyuzo <gotoyuzo@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-10-07 08:53:06 +0000 |
commit | aece4dd547f5a9f284545128c49a989dc0d3034c (patch) | |
tree | dd5f589ead5457fcb6c4adc72dfe806eaac76600 /lib/net/http.rb | |
parent | 9b6d2b786f643ddefb332b2a671ff38df9099747 (diff) | |
download | ruby-aece4dd547f5a9f284545128c49a989dc0d3034c.tar.gz ruby-aece4dd547f5a9f284545128c49a989dc0d3034c.tar.xz ruby-aece4dd547f5a9f284545128c49a989dc0d3034c.zip |
* lib/net/http.rb: remove enable_post_connection_check flag.
* lib/open-uri.rb: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@13648 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/net/http.rb')
-rw-r--r-- | lib/net/http.rb | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/lib/net/http.rb b/lib/net/http.rb index 287881c9c..29377fc47 100644 --- a/lib/net/http.rb +++ b/lib/net/http.rb @@ -533,9 +533,6 @@ module Net #:nodoc: false # redefined in net/https end - # specify enabling SSL server certificate and hostname checking. - attr_accessor :enable_post_connection_check - # Opens TCP connection and HTTP session. # # When this method is called with block, gives a HTTP object @@ -595,12 +592,7 @@ module Net #:nodoc: end s.connect if @ssl_context.verify_mode != OpenSSL::SSL::VERIFY_NONE - begin - s.post_connection_check(@address) - rescue OpenSSL::SSL::SSLError => ex - raise ex if @enable_post_connection_check - warn ex.message - end + s.post_connection_check(@address) end end on_connect |