Hi, i'm using redis 3.2, and set "requirepass" in my redis instance config.
If I set password in RedisURI, it would use it when connecting to sentinel server. Since sentinel does not support command 'AUTH', exception will be thrown "ERR unknown command 'AUTH'"
If I do not set password in RedisURI, It can't connect to redis instance.
So how could deal with it?
RedisURI.builder().withSentinelMasterId(masterId)
.withPassword("test") // set it or not? Both will not work.