HBASE-21345 [hbck2] Allow version check to proceed even though master is 'initializing'.
Just remove the check state from the getClusterStatus call. Signed-off-by: Michael Stack <stack@apache.org> Signed-off-by: Peter Somogyi <psomogyi@apache.org>
This commit is contained in:
parent
877564c1aa
commit
dd8496a546
|
@ -955,7 +955,10 @@ public class MasterRpcServices extends RSRpcServices
|
|||
GetClusterStatusRequest req) throws ServiceException {
|
||||
GetClusterStatusResponse.Builder response = GetClusterStatusResponse.newBuilder();
|
||||
try {
|
||||
master.checkInitialized();
|
||||
// We used to check if Master was up at this point but let this call proceed even if
|
||||
// Master is initializing... else we shut out stuff like hbck2 tool from making progress
|
||||
// since it queries this method to figure cluster version. hbck2 wants to be able to work
|
||||
// against Master even if it is 'initializing' so it can do fixup.
|
||||
response.setClusterStatus(ClusterMetricsBuilder.toClusterStatus(
|
||||
master.getClusterMetrics(ClusterMetricsBuilder.toOptions(req.getOptionsList()))));
|
||||
} catch (IOException e) {
|
||||
|
|
Loading…
Reference in New Issue