Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

HGETALL returns empty dict in RESP3 connection mode #2735

Closed
uglide opened this issue May 2, 2023 · 1 comment
Closed

HGETALL returns empty dict in RESP3 connection mode #2735

uglide opened this issue May 2, 2023 · 1 comment

Comments

@uglide
Copy link
Contributor

uglide commented May 2, 2023

Version: redis-py 5.0.0b2

Platform: Any

Description:

RESP2 mode:

r = redis.Redis(decode_responses=True)
r.hset("test", "test", '123')
r.hgetall("test")
# {'test': '123'}

RESP3 mode:

r = redis.Redis(protocol=3, decode_responses=True)
r.hgetall("test")
# {}
@dvora-h
Copy link
Collaborator

dvora-h commented May 7, 2023

Fixed in #2737

@dvora-h dvora-h closed this as completed May 7, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants