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