HBASE-19350 TestMetaWithReplicas is flaky
This commit is contained in:
parent
49eaa7a8f9
commit
2bda22a64e
|
@ -296,7 +296,10 @@ public class ClusterStatus {
|
|||
|
||||
@InterfaceAudience.Private
|
||||
public List<RegionState> getRegionsInTransition() {
|
||||
return this.intransition;
|
||||
if (intransition == null) {
|
||||
return Collections.emptyList();
|
||||
}
|
||||
return Collections.unmodifiableList(intransition);
|
||||
}
|
||||
|
||||
public String getClusterId() {
|
||||
|
|
Loading…
Reference in New Issue