Skip to content

Commit

Permalink
Remove non-ascii colon in JedisSentintelPool
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Firmani committed Sep 17, 2019
1 parent b54977b commit b793c11
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/java/redis/clients/jedis/JedisSentinelPool.java
Expand Up @@ -287,8 +287,8 @@ public void run() {
*/
List<String> masterAddr = j.sentinelGetMasterAddrByName(masterName);
if (masterAddr == null || masterAddr.size() != 2) {
log.warn("Can not get master addr, master name: {}. Sentinel: {}{}.",masterName,host,port);
}else{
log.warn("Can not get master addr, master name: {}. Sentinel: {}: {}.",masterName,host,port);
} else{
initPool(toHostAndPort(masterAddr));
}

Expand Down

0 comments on commit b793c11

Please sign in to comment.