Addendum fix for HDFS-7749 to be compatible with HDFS-7993
This commit is contained in:
parent
9f2f583f40
commit
9af1f4779b
|
@ -634,9 +634,9 @@ public class NamenodeFsck implements DataEncryptionKeyFactory {
|
|||
report.append(" Live_repl=" + liveReplicas);
|
||||
if (showLocations || showRacks || showReplicaDetails) {
|
||||
StringBuilder sb = new StringBuilder("[");
|
||||
Iterable<DatanodeStorageInfo> storages = bm.getStorages(block.getLocalBlock());
|
||||
for (Iterator<DatanodeStorageInfo> iterator = storages.iterator(); iterator.hasNext();) {
|
||||
DatanodeStorageInfo storage = iterator.next();
|
||||
DatanodeStorageInfo[] storages = bm.getStorages(storedBlock);
|
||||
for (int i = 0; i < storages.length; i++) {
|
||||
DatanodeStorageInfo storage = storages[i];
|
||||
DatanodeDescriptor dnDesc = storage.getDatanodeDescriptor();
|
||||
if (showRacks) {
|
||||
sb.append(NodeBase.getPath(dnDesc));
|
||||
|
@ -645,7 +645,7 @@ public class NamenodeFsck implements DataEncryptionKeyFactory {
|
|||
.getStorageType()));
|
||||
}
|
||||
if (showReplicaDetails) {
|
||||
LightWeightLinkedSet<Block> blocksExcess =
|
||||
LightWeightLinkedSet<BlockInfo> blocksExcess =
|
||||
bm.excessReplicateMap.get(dnDesc.getDatanodeUuid());
|
||||
Collection<DatanodeDescriptor> corruptReplicas =
|
||||
bm.getCorruptReplicas(block.getLocalBlock());
|
||||
|
@ -666,7 +666,7 @@ public class NamenodeFsck implements DataEncryptionKeyFactory {
|
|||
sb.append("LIVE)");
|
||||
}
|
||||
}
|
||||
if (iterator.hasNext()) {
|
||||
if (i < storages.length - 1) {
|
||||
sb.append(", ");
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue