HBASE-11727 Assignment wait time error in case of ServerNotRunningYetException
This commit is contained in:
parent
60fcc2ea8d
commit
dc1d743ce6
|
@ -2104,8 +2104,9 @@ public class AssignmentManager extends ZooKeeperListener {
|
|||
+ this.server.getConfiguration().getLong(ALREADY_IN_TRANSITION_WAITTIME,
|
||||
DEFAULT_ALREADY_IN_TRANSITION_WAITTIME);
|
||||
} else {
|
||||
maxWaitTime = this.server.getConfiguration().
|
||||
getLong("hbase.regionserver.rpc.startup.waittime", 60000);
|
||||
maxWaitTime = EnvironmentEdgeManager.currentTimeMillis()
|
||||
+ this.server.getConfiguration().getLong(
|
||||
"hbase.regionserver.rpc.startup.waittime", 60000);
|
||||
}
|
||||
}
|
||||
try {
|
||||
|
|
Loading…
Reference in New Issue