Skip to content

Commit 01ba3b4

Browse files
committed
Fix disable decode for dump command on asyncio
1 parent ef4caf5 commit 01ba3b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

redis/asyncio/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -485,7 +485,7 @@ async def parse_response(
485485
"""Parses a response from the Redis server"""
486486
try:
487487
if NEVER_DECODE in options:
488-
response = await connection.read_response(disable_encoding=True)
488+
response = await connection.read_response(disable_decoding=True)
489489
else:
490490
response = await connection.read_response()
491491
except ResponseError:

0 commit comments

Comments
 (0)