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 143107a commit 51a4dd9Copy full SHA for 51a4dd9
redis/asyncio/client.py
@@ -485,7 +485,7 @@ async def parse_response(
485
"""Parses a response from the Redis server"""
486
try:
487
if NEVER_DECODE in options:
488
- response = await connection.read_response(disable_encoding=True)
+ response = await connection.read_response(disable_decoding=True)
489
else:
490
response = await connection.read_response()
491
except ResponseError:
0 commit comments