Skip to content

Commit 51a4dd9

Browse files
nosammaidvora-h
andauthored
Fix disable decode for dump command on asyncio (#2070)
Co-authored-by: dvora-h <67596500+dvora-h@users.noreply.github.com>
1 parent 143107a commit 51a4dd9

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)