RUBY-429 tweaks to rescued errors
This commit is contained in:
parent
58f0ee8fff
commit
a5b5d5e3e3
|
@ -65,9 +65,9 @@ module Mongo
|
||||||
@socket.readpartial(maxlen, buffer)
|
@socket.readpartial(maxlen, buffer)
|
||||||
rescue EOFError
|
rescue EOFError
|
||||||
return ConnectionError
|
return ConnectionError
|
||||||
rescue Errno::ECONNRESET, Errno::ENOTCONN, Errno::EBADF
|
rescue Errno::ENOTCONN, Errno::EBADF, Errno::ECONNRESET, Errno::EPIPE
|
||||||
raise ConnectionFailure
|
raise ConnectionFailure
|
||||||
rescue Errno::EINTR, Errno::EIO, Errno::EPIPE
|
rescue Errno::EINTR, Errno::EIO
|
||||||
raise OperationFailure
|
raise OperationFailure
|
||||||
end
|
end
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue