From 53e352fd718cd2cae6d77298e6e92736dddcfeeb Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Mon, 23 Nov 2020 00:06:37 -0800 Subject: [PATCH] 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 --- tool/downloader.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tool/downloader.rb b/tool/downloader.rb index 21f4aab3c3..d09afc5ad7 100644 --- a/tool/downloader.rb +++ b/tool/downloader.rb @@ -197,7 +197,7 @@ class Downloader $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