byte[] split = dr.getSecond();
HRegionLocation regionLoc = table.getRegionLocation(split);
// if this region moved locations
HServerAddress newRs = regionLoc.getServerAddress();
if (newRs.compareTo(rsLoc) != 0) {
LOG.debug("Region with " + splitAlgo.rowToStr(split)
+ " moved to " + newRs + ". Relocating...");
// relocate it, don't use it right now
if (!daughterRegions.containsKey(newRs)) {
LinkedList<Pair<byte[], byte[]>> entry = Lists.newLinkedList();