Handle TimeoutError raised by py-redis library

This commit is contained in:
markow 2015-02-03 13:14:46 +01:00 committed by Ask Solem
parent 34e38f7671
commit 86683e4167
1 changed files with 2 additions and 1 deletions

View File

@ -88,7 +88,8 @@ def get_redis_error_classes():
IOError,
OSError,
exceptions.ConnectionError,
exceptions.AuthenticationError)),
exceptions.AuthenticationError,
exceptions.TimeoutError)),
(virtual.Transport.channel_errors + (
DataError,
exceptions.InvalidResponse,