ruby-changes:47932
From: kazu <ko1@a...>
Date: Wed, 27 Sep 2017 21:33:03 +0900 (JST)
Subject: [ruby-changes:47932] kazu:r60046 (trunk): Fix exception class [ci skip]
kazu 2017-09-27 21:32:57 +0900 (Wed, 27 Sep 2017) New Revision: 60046 https://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=revision&revision=60046 Log: Fix exception class [ci skip] Modified files: trunk/lib/net/http.rb Index: lib/net/http.rb =================================================================== --- lib/net/http.rb (revision 60045) +++ lib/net/http.rb (revision 60046) @@ -739,7 +739,8 @@ module Net #:nodoc: https://github.com/ruby/ruby/blob/trunk/lib/net/http.rb#L739 # Maximum number of times to retry an idempotent request in case of # Net::ReadTimeout, IOError, EOFError, Errno::ECONNRESET, - # Errno::ECONNABORTED, Errno::EPIPE, OpenSSL::SSL, Timeout::Error + # Errno::ECONNABORTED, Errno::EPIPE, OpenSSL::SSL::SSLError, + # Timeout::Error. # Should be non-negative integer number. Zero means no retries. # The default value is 1. def max_retries=(retries) -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/