From f767b464c8fbb039d058dbff43bbdef6b2987476 Mon Sep 17 00:00:00 2001 From: Chronial Date: Wed, 30 Jan 2019 02:14:00 +0100 Subject: Do not leave connections in invalid state --- redis/connection.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/redis/connection.py b/redis/connection.py index 0d1c394..1c1b31e 100755 --- a/redis/connection.py +++ b/redis/connection.py @@ -610,9 +610,9 @@ class Connection(object): errmsg = e.args[1] raise ConnectionError("Error %s while writing to socket. %s." % (errno, errmsg)) - except Exception as e: + except: # noqa: E722 self.disconnect() - raise e + raise def send_command(self, *args): "Pack and send a command to the Redis server" @@ -631,9 +631,9 @@ class Connection(object): "Read the response from a previously sent command" try: response = self._parser.read_response() - except Exception as e: + except: # noqa: E722 self.disconnect() - raise e + raise if isinstance(response, ResponseError): raise response return response -- cgit v1.2.1