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:
parent
0ffe9085d8
commit
f51c141a3a
|
@ -2707,7 +2707,7 @@ public class HConnectionManager {
|
||||||
private long canRetryUntil = 0;
|
private long canRetryUntil = 0;
|
||||||
|
|
||||||
public ServerErrorTracker(long timeout) {
|
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;
|
this.canRetryUntil = EnvironmentEdgeManager.currentTimeMillis() + timeout;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue