Skip to content

Commit a3dd3e6

Browse files
committed
Fix sentinel setting.
1 parent e7bd22a commit a3dd3e6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/radiadesign/catalina/session/RedisSessionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ public void setSentinels(String sentinels) {
127127
sentinels = "";
128128
}
129129

130-
String[] sentinelArray = getSentinels().split(",");
130+
String[] sentinelArray = sentinels.split(",");
131131
this.sentinelSet = new HashSet<String>(Arrays.asList(sentinelArray));
132132

133133
this.sentinels = sentinels;

0 commit comments

Comments
 (0)