Created
August 21, 2009 14:44
-
-
Save rparker/172059 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Yes, adding Errno::EPIPE seems to have completely solved the problem! | |
(barring very unlikely coincidences) | |
Thank you ! | |
For reference, the line # was correct for my "remote_fetcher.rb" file from June 3, 2009 in rubygems 1.3.5 | |
My lines 337 - 340 are now: | |
# HACK work around EOFError bug in Net::HTTP | |
# NOTE Errno::ECONNABORTED raised a lot on Windows, and make impossible | |
# to install gems. | |
rescue EOFError, Errno::ECONNABORTED, Errno::ECONNRESET, Errno::EPIPE | |
- Randy | |
- Show quoted text - | |
-- | |
http://mobiledyne.com |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment