From 255bf3fce8a3f1affcd4b2a1500b1455d4fdcbdc Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Sat, 4 Jul 2020 09:43:07 +0000 Subject: Add one more connection error type One of the mirrors started triggering Errno::ECONNRESET --- modules/mga-mirrors/files/check_mirrors_status | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'modules') diff --git a/modules/mga-mirrors/files/check_mirrors_status b/modules/mga-mirrors/files/check_mirrors_status index 80d0f8b7..5361dfad 100755 --- a/modules/mga-mirrors/files/check_mirrors_status +++ b/modules/mga-mirrors/files/check_mirrors_status @@ -10,7 +10,7 @@ def get_dates(base, archs_per_distro, optional=true) r = {} begin r['base'] = get_timestamp(base) - rescue Net::OpenTimeout, Timeout::Error, ArgumentError, NoMethodError, Errno::EHOSTUNREACH, Errno::ECONNREFUSED, IOError => e + rescue Net::OpenTimeout, Timeout::Error, ArgumentError, NoMethodError, Errno::EHOSTUNREACH, Errno::ECONNREFUSED, Errno::ECONNRESET, IOError => e end archs_per_distro.each{|d, archs| @@ -18,7 +18,7 @@ def get_dates(base, archs_per_distro, optional=true) archs.each{|a| begin r[d][a] = get_date(base, d, a) - rescue Net::OpenTimeout, Timeout::Error, ArgumentError, NoMethodError, Errno::EHOSTUNREACH, Errno::ECONNREFUSED, IOError => e + rescue Net::OpenTimeout, Timeout::Error, ArgumentError, NoMethodError, Errno::EHOSTUNREACH, Errno::ECONNREFUSED, Errno::ECONNRESET, IOError => e if !optional then STDERR.puts "Failed to fetch #{version_url(base, d, a)}" raise -- cgit v1.2.1