mirror of https://github.com/celery/kombu.git
Redis: Add IOError and OSError to connection_errors
This commit is contained in:
parent
1438b95d8f
commit
cbc6001330
|
@ -834,6 +834,8 @@ class Transport(virtual.Transport):
|
|||
(virtual.Transport.connection_errors + (
|
||||
InconsistencyError,
|
||||
socket.error,
|
||||
IOError,
|
||||
OSError,
|
||||
exceptions.ConnectionError,
|
||||
exceptions.AuthenticationError)),
|
||||
(virtual.Transport.channel_errors + (
|
||||
|
|
Loading…
Reference in New Issue