-
Notifications
You must be signed in to change notification settings - Fork 986
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
Add support for AUTH with user + password introduced in Redis 6 #1202
Comments
While it would be hacky and awkward, can't you specify the password as a two part atom - userpassword. I haven't checked the parser to see if this is an issue. |
The format |
I would go so far as to say considering creating an auth(Principal principal) abstraction, with overloads for the username only and username/password is a better abstraction? |
@mp911de what the release plan for this issue? since Redis 6 is backward compatible with RESP2 I don't think this issue should be blocked by the RESP3 implementation. |
I was a bit reluctant on releasing a first milestone as Redis 6's Sentinel with RESP3 (redis/redis#6160) creates an impediment for RESP3 usage. Lettuce 6 attempts a RESP3 handshake by default and so the default behavior renders Sentinel arrangements unusable. |
Feature Request
In Redis 6 it is now possible to authenticate either using a simple password (legacy) or using a user + password
See ACL documentation section in Redis Doc
Is your feature request related to a problem? Please describe
No
Describe the solution you'd like
Just support new features of Redis 6
Describe alternatives you've considered
No alternative,
Teachability, Documentation, Adoption, Migration Strategy
Adding new parameter to the
auth()
method and URIsThe text was updated successfully, but these errors were encountered: