From ee520ed1b351e63b2c672c5f29a64fd7afa56a2e Mon Sep 17 00:00:00 2001 From: Aaron Yang Date: Thu, 23 Aug 2018 15:37:27 +0800 Subject: fix retry logic for StricRedis --- redis/client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redis/client.py b/redis/client.py index 79e94d0..f06c9ff 100755 --- a/redis/client.py +++ b/redis/client.py @@ -669,7 +669,7 @@ class StrictRedis(object): return self.parse_response(connection, command_name, **options) except (ConnectionError, TimeoutError) as e: connection.disconnect() - if not connection.retry_on_timeout and isinstance(e, TimeoutError): + if (not connection.retry_on_timeout and isinstance(e, TimeoutError)): raise connection.send_command(*args) return self.parse_response(connection, command_name, **options) -- cgit v1.2.1