From 6970214e4126287c0a447b2ccc00f1692978cd6e Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Fri, 21 Feb 2020 10:40:05 +0100 Subject: [PATCH] Improve RedisURI documentation for sentinel authentication #1232 --- src/main/java/io/lettuce/core/RedisURI.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/io/lettuce/core/RedisURI.java b/src/main/java/io/lettuce/core/RedisURI.java index 4e260d1861..62e7327a01 100644 --- a/src/main/java/io/lettuce/core/RedisURI.java +++ b/src/main/java/io/lettuce/core/RedisURI.java @@ -83,6 +83,11 @@ * * *

+ * Note: When using Redis Sentinel, the password from the URI applies to the data nodes only. Sentinel authentication must be + * configured for each {@link #getSentinels() sentinel node}. + *

+ * + *

* Schemes *

*