We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acfa131 commit f7483beCopy full SHA for f7483be
redis/asyncio/connection.py
@@ -274,8 +274,6 @@ def _read_response(
274
self, disable_decoding: bool = False
275
) -> Union[EncodableT, ResponseError, None]:
276
raw = self._readline()
277
- if not raw:
278
- raise ConnectionError(SERVER_CLOSED_CONNECTION_ERROR)
279
response: Any
280
byte, response = raw[:1], raw[1:]
281
0 commit comments