Closed darnfish closed 3 years ago
Just figured out I needed to put the Redis password in the main opts
map and then the Sentinel password in the sentinel
map. My config looked like this after making the changes:
[
sentinel: [
sentinels: [[]],
password: "abc",
group: :mymaster,
],
password: "def"
]
Looks like the Redix client has support for auth via passwords when connecting to Redis instances but when connecting to Sentinel instances, no password option is available.
For example in https://github.com/luin/ioredis, a
password
andsentinelPassword
field can be supplied.Am I missing something or should I create a PR for this?