Update skipping current iteration on exception

This commit is contained in:
Dave Machado 2017-09-14 10:18:26 -04:00 committed by GitHub
parent e7f5139e85
commit c32499a34b

View File

@ -61,7 +61,7 @@ links.each do |link|
rescue Errno::ECONNREFUSED
fails.push("(CON): #{link}")
rescue Errno::ECONNRESET
continue
next
end
progressbar.increment
end