HBASE-5519 Incorrect warning in splitlogmanager

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1297707 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael Stack 2012-03-06 20:46:02 +00:00
parent 9bc5b685bb
commit e4f4022493
1 changed files with 4 additions and 1 deletions

View File

@ -487,7 +487,10 @@ public class SplitLogManager extends ZooKeeperListener {
new_version, workerName);
tot_mgr_heartbeat.incrementAndGet();
} else {
LOG.warn("got dup heartbeat for " + path + " ver = " + new_version);
// duplicate heartbeats - heartbeats w/o zk node version
// changing - are possible. The timeout thread does
// getDataSetWatch() just to check whether a node still
// exists or not
}
return;
}