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) {
|
||||
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)) {
|
||||
try {
|
||||
ClientProtos.ClientService.BlockingInterface rs = conn.getClient(sn);
|
||||
|
|
Loading…
Reference in New Issue