From: Ludovico Magnocavallo Date: Mon, 11 May 2009 11:39:59 +0000 (+0200) Subject: disconnect when we cannot read from the socket X-Git-Url: https://git.saurik.com/redis.git/commitdiff_plain/b062edf392a70116031881f9af7a082d042a2dbd disconnect when we cannot read from the socket --- diff --git a/client-libraries/python/redis.py b/client-libraries/python/redis.py index 881dfd1d..1787f171 100644 --- a/client-libraries/python/redis.py +++ b/client-libraries/python/redis.py @@ -880,6 +880,9 @@ class Redis(object): def get_response(self): data = self._read().strip() + if not data: + self.disconnect() + raise ConnectionError("Socket closed on remote end") c = data[0] if c == '-': raise ResponseError(data[5:] if data[:5] == '-ERR ' else data[1:])