Fix exception message #686

pull/697/head
Nikita 8 years ago
parent 41c406d5f0
commit ab7925eee1

@ -674,14 +674,14 @@ public class MasterSlaveConnectionManager implements ConnectionManager {
if (source.getRedirect() != null) { if (source.getRedirect() != null) {
MasterSlaveEntry e = getEntry(source.getAddr()); MasterSlaveEntry e = getEntry(source.getAddr());
if (e == null) { if (e == null) {
throw new RedisNodeNotFoundException("No node for slot: " + source.getAddr()); throw new RedisNodeNotFoundException("Node: " + source.getAddr() + " for slot: " + source.getSlot() + " hasn't been discovered yet");
} }
return e; return e;
} }
MasterSlaveEntry e = getEntry(source.getSlot()); MasterSlaveEntry e = getEntry(source.getSlot());
if (e == null) { if (e == null) {
throw new RedisNodeNotFoundException("No node with slot: " + source.getSlot()); throw new RedisNodeNotFoundException("Node: " + source.getAddr() + " for slot: " + source.getSlot() + " hasn't been discovered yet");
} }
return e; return e;
} }

Loading…
Cancel
Save