-
Notifications
You must be signed in to change notification settings - Fork 23.8k
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
Fix get # option in sort command #13608
Conversation
cool, this bug just is introduced in 7.4, for old version, we don't support GET option in cluster mode, right? can you add some tests also, maybe just remove tag |
hi @ShooterIT , i'm not familiar with tcl test. maybe you can do it |
Hi @opt-m I updated this PR, please have a look when you are available |
@ShooterIT I've reviewed the code, and everything looks great! |
merged, thank you @opt-m |
Hi @sundb @YaacovHazan maybe we need to cherry pick it to 7.4 |
agree, i marked the backport label for 7.4. |
From 7.4, Redis allows `GET` options in cluster mode when the pattern maps to the same slot as the key, but GET # pattern that represents key itself is missed. This commit resolves it, bug report #13607. --------- Co-authored-by: Yuan Wang <[email protected]>
From 7.4, Redis allows `GET` options in cluster mode when the pattern maps to the same slot as the key, but GET # pattern that represents key itself is missed. This commit resolves it, bug report redis#13607. --------- Co-authored-by: Yuan Wang <[email protected]>
From 7.4, Redis allows
GET
options in cluster mode when the pattern maps tothe same slot as the key, but GET # pattern that represents key itself is missed.
This commit resolves it.
fix #13607.