mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
tool/downloader.rb: retry Net::ReadTimeout
as failed in
19540849/job/9p9pq0b7hfrb2r8q
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@65097 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
569fe2922f
commit
c312111c7c
1 changed files with 1 additions and 1 deletions
|
@ -271,7 +271,7 @@ class Downloader
|
||||||
times = 0
|
times = 0
|
||||||
begin
|
begin
|
||||||
block.call
|
block.call
|
||||||
rescue Errno::ETIMEDOUT, SocketError, OpenURI::HTTPError => e
|
rescue Errno::ETIMEDOUT, SocketError, OpenURI::HTTPError, Net::ReadTimeout => e
|
||||||
raise if e.is_a?(OpenURI::HTTPError) && e.message !~ /^50[023] / # retry only 500, 502, 503 for http error
|
raise if e.is_a?(OpenURI::HTTPError) && e.message !~ /^50[023] / # retry only 500, 502, 503 for http error
|
||||||
times += 1
|
times += 1
|
||||||
if times <= max_times
|
if times <= max_times
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue