Shift Redis/Sentinel instances to remove unused index

* Redis instances : 6, 7, 8 -> 5, 6, 7
* Sentinel instances : 4 -> 3
This commit is contained in:
Jungtaek Lim
2014-02-15 20:22:50 +09:00
parent ef95688701
commit 05d63bbda4
5 changed files with 33 additions and 37 deletions

View File

@@ -23,7 +23,6 @@ public class HostAndPortUtil {
sentinelHostAndPortList.add(new HostAndPort("localhost", Protocol.DEFAULT_SENTINEL_PORT));
sentinelHostAndPortList.add(new HostAndPort("localhost", Protocol.DEFAULT_SENTINEL_PORT + 1));
sentinelHostAndPortList.add(new HostAndPort("localhost", Protocol.DEFAULT_SENTINEL_PORT + 2));
sentinelHostAndPortList.add(new HostAndPort("localhost", Protocol.DEFAULT_SENTINEL_PORT + 3));
clusterHostAndPortList.add(new HostAndPort("localhost", 7379));
clusterHostAndPortList.add(new HostAndPort("localhost", 7380));