Browse Source

Add Errno::ECONNRESET exception

pull/454/merge
Dave Machado 6 years ago
committed by GitHub
parent
commit
1f768c9390
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      build/validate_links.rb

+ 2
- 0
build/validate_links.rb View File

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


Loading…
Cancel
Save