summaryrefslogtreecommitdiff
path: root/redis/asyncio/connection.py
diff options
context:
space:
mode:
Diffstat (limited to 'redis/asyncio/connection.py')
-rw-r--r--redis/asyncio/connection.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/redis/asyncio/connection.py b/redis/asyncio/connection.py
index f0e6d3d..91961ba 100644
--- a/redis/asyncio/connection.py
+++ b/redis/asyncio/connection.py
@@ -911,7 +911,13 @@ class Connection:
"""Poll the socket to see if there's data that can be read."""
if not self.is_connected:
await self.connect()
- return await self._parser.can_read(timeout)
+ try:
+ return await self._parser.can_read(timeout)
+ except OSError as e:
+ await self.disconnect()
+ raise ConnectionError(
+ f"Error while reading from {self.host}:{self.port}: {e.args}"
+ )
async def read_response(self, disable_decoding: bool = False):
"""Read the response from a previously sent command"""