HDFS-11497. Ozone: Fix Container test regression. Contributed by Anu Engineer.

This commit is contained in:
Anu Engineer 2017-03-06 21:20:30 -08:00
parent 72f0bed3dd
commit 5d0a206a63

View File

@ -124,7 +124,7 @@ public StorageLocationReport[] getLocationReport() throws IOException {
StorageLocationReport r = new StorageLocationReport( StorageLocationReport r = new StorageLocationReport(
loc.getStorageUuId(), false, loc.getCapacity(), loc.getStorageUuId(), false, loc.getCapacity(),
scmUsed, remaining); scmUsed, remaining);
reports[idx++] = r; reports[idx] = r;
} }
return reports; return reports;
} }