From 7edcd90834550f2ff214225eec434df65ce3e1e5 Mon Sep 17 00:00:00 2001 From: Don Brown Date: Mon, 24 Aug 2015 16:59:45 -0600 Subject: [PATCH 1/3] Better handle timeouts during pubsub --- asyncio_redis/protocol.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/asyncio_redis/protocol.py b/asyncio_redis/protocol.py index 12ed7b3..d678f90 100644 --- a/asyncio_redis/protocol.py +++ b/asyncio_redis/protocol.py @@ -919,6 +919,8 @@ def _reader_coroutine(self): yield from self._handle_item(self._push_answer) except ConnectionLostError: return + except asyncio.streams.IncompleteReadError: + return @asyncio.coroutine def _handle_item(self, cb): From 173ad57c024433e6fa522c88bf2c4ce9ee1cd784 Mon Sep 17 00:00:00 2001 From: Don Brown Date: Thu, 25 Feb 2016 11:15:19 -0700 Subject: [PATCH 2/3] Ignore idea and egg files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 0628c30..434b71c 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,4 @@ *.py[cod] __pycache__ +*.iml +*.egg-info From 3143b15182cb5810c3caa86047a2d1dd8d16b678 Mon Sep 17 00:00:00 2001 From: Don Brown Date: Thu, 25 Feb 2016 11:15:51 -0700 Subject: [PATCH 3/3] Bump version to 0.14.2-db1 for release --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 19cbecb..d386b58 100755 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ setup( name='asyncio_redis', author='Jonathan Slenders', - version='0.14.2', + version='0.14.2-db1', license='LICENSE.txt', url='https://github.com/jonathanslenders/asyncio-redis',