Skip to content

Commit b7f645d

Browse files
committed
Merge pull request #53 from peh/master
Fixed setSentinelMaster mis-assignment.
2 parents 5a6e7b4 + 443c4a8 commit b7f645d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/orangefunction/tomcat/redissessions/RedisSessionManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ public String getSentinelMaster() {
186186
}
187187

188188
public void setSentinelMaster(String master) {
189-
this.sentinelMaster = sentinelMaster;
189+
this.sentinelMaster = master;
190190
}
191191

192192
@Override

0 commit comments

Comments
 (0)