mirror of https://github.com/celery/kombu.git
Redis: Maintain exception lists
This commit is contained in:
parent
621b77a92a
commit
178bc8cde2
|
@ -78,7 +78,9 @@ class RedisBackend(virtual.VirtualBaseBackend):
|
|||
Channel = RedisChannel
|
||||
|
||||
default_port = DEFAULT_PORT
|
||||
connection_errors = (exceptions.ConnectionError, )
|
||||
connection_errors = (exceptions.ConnectionError,
|
||||
exceptions.AuthenticationError)
|
||||
channel_errors = (exceptions.ConnectionError,
|
||||
exceptions.InvalidData,
|
||||
exceptions.InvalidResponse,
|
||||
exceptions.ResponseError)
|
||||
|
|
Loading…
Reference in New Issue