HBASE-19094 NPE in RSGroupStartupWorker.waitForGroupTableOnline during master startup
This commit is contained in:
parent
8e6d116ae3
commit
f981de5bb9
|
@ -691,7 +691,9 @@ class RSGroupInfoManagerImpl implements RSGroupInfoManager {
|
||||||
if(cell != null) {
|
if(cell != null) {
|
||||||
sn = ServerName.parseVersionedServerName(CellUtil.cloneValue(cell));
|
sn = ServerName.parseVersionedServerName(CellUtil.cloneValue(cell));
|
||||||
}
|
}
|
||||||
if (tsm.isTableState(TableName.NAMESPACE_TABLE_NAME,
|
if (sn == null) {
|
||||||
|
nsFound.set(false);
|
||||||
|
} else if (tsm.isTableState(TableName.NAMESPACE_TABLE_NAME,
|
||||||
TableState.State.ENABLED)) {
|
TableState.State.ENABLED)) {
|
||||||
try {
|
try {
|
||||||
ClientProtos.ClientService.BlockingInterface rs = conn.getClient(sn);
|
ClientProtos.ClientService.BlockingInterface rs = conn.getClient(sn);
|
||||||
|
|
Loading…
Reference in New Issue