Issue tracker is used for reporting bugs and discussing new features. Please use
stackoverflow for supporting issues.
The v8 client is able to talk to a Redis cluster fronted by an Envoy proxy. After upgrading to v9, it shows AUTH errors.
Expected Behavior
The client should still be able to talk to the proxy.
Current Behavior
it shows AUTH errors.
NOAUTH Authentication required.
Possible Solution
Steps to Reproduce
Code Snippet:
rOpts := &redis.Options{ Addr: proxy-addr, Username: proxy-username, Password: proxy-password }
client := redis.NewClient(rOpts)
cmdStatus := client.Set(ctx, "key", "value", 0)
Context (Environment)
Detailed Description
Possible Implementation