ruby-changes:63702
From: Takashi <ko1@a...>
Date: Mon, 23 Nov 2020 17:07:39 +0900 (JST)
Subject: [ruby-changes:63702] 53e352fd71 (master): Increase the # of downloader.rb's retry attempts
https://git.ruby-lang.org/ruby.git/commit/?id=53e352fd71 From 53e352fd718cd2cae6d77298e6e92736dddcfeeb Mon Sep 17 00:00:00 2001 From: Takashi Kokubun <takashikkbn@g...> Date: Mon, 23 Nov 2020 00:06:37 -0800 Subject: Increase the # of downloader.rb's retry attempts Apparently 9 was not enough either. https://rubyci.org/logs/rubyci.s3.amazonaws.com/rhel_zlinux/ruby-master/log/20201123T063303Z.fail.html.gz diff --git a/tool/downloader.rb b/tool/downloader.rb index 21f4aab..d09afc5 100644 --- a/tool/downloader.rb +++ b/tool/downloader.rb @@ -197,7 +197,7 @@ class Downloader https://github.com/ruby/ruby/blob/trunk/tool/downloader.rb#L197 $stdout.flush end begin - data = with_retry(9) do + data = with_retry(10) do url.read(options.merge(http_options(file, since.nil? ? true : since))) end rescue OpenURI::HTTPError => http_error -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/