"vscode:/vscode.git/clone" did not exist on "5a7a0f778d7bb4a318b92e395665d091abfbb86c"
Commit 1f768c93 authored by Dave Machado's avatar Dave Machado Committed by GitHub
Browse files

Add Errno::ECONNRESET exception

parent de4f7f08
...@@ -60,6 +60,8 @@ links.each do |link| ...@@ -60,6 +60,8 @@ links.each do |link|
fails.push("(SOK): #{link}") fails.push("(SOK): #{link}")
rescue Errno::ECONNREFUSED rescue Errno::ECONNREFUSED
fails.push("(CON): #{link}") fails.push("(CON): #{link}")
rescue Errno::ECONNRESET
continue
end end
progressbar.increment progressbar.increment
end end
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment