|
@@ -728,7 +728,7 @@ class FsDatasetImpl implements FsDatasetSpi<FsVolumeImpl> {
|
|
|
infos.length);
|
|
|
for (VolumeFailureInfo info: infos) {
|
|
|
failedStorageLocations.add(
|
|
|
- info.getFailedStorageLocation().getNormalizedUri().toString());
|
|
|
+ info.getFailedStorageLocation().toString());
|
|
|
}
|
|
|
return failedStorageLocations.toArray(
|
|
|
new String[failedStorageLocations.size()]);
|
|
@@ -767,7 +767,7 @@ class FsDatasetImpl implements FsDatasetSpi<FsVolumeImpl> {
|
|
|
long estimatedCapacityLostTotal = 0;
|
|
|
for (VolumeFailureInfo info: infos) {
|
|
|
failedStorageLocations.add(
|
|
|
- info.getFailedStorageLocation().getNormalizedUri().toString());
|
|
|
+ info.getFailedStorageLocation().toString());
|
|
|
long failureDate = info.getFailureDate();
|
|
|
if (failureDate > lastVolumeFailureDate) {
|
|
|
lastVolumeFailureDate = failureDate;
|