HBASE-7649 ADDENDUM client retry timeout doesn't need to do x2 fallback when going to different server

git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1485513 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
sershe 2013-05-22 23:54:12 +00:00
parent 0ffe9085d8
commit f51c141a3a
1 changed files with 1 additions and 1 deletions

View File

@ -2707,7 +2707,7 @@ public class HConnectionManager {
private long canRetryUntil = 0;
public ServerErrorTracker(long timeout) {
LOG.info("Server tracker timeout is " + timeout + "ms");
LOG.trace("Server tracker timeout is " + timeout + "ms");
this.canRetryUntil = EnvironmentEdgeManager.currentTimeMillis() + timeout;
}