Fixing merge conflicts due to HDFS-10637
This commit is contained in:
parent
56b0fddfbd
commit
5520f73dee
|
@ -71,7 +71,7 @@ public class ContainerLocationManagerImpl implements ContainerLocationManager {
|
|||
references = this.dataset.getFsVolumeReferences();
|
||||
for (int ndx = 0; ndx < references.size(); ndx++) {
|
||||
FsVolumeSpi vol = references.get(ndx);
|
||||
pathList.add(Paths.get(vol.getBasePath()));
|
||||
pathList.add(Paths.get(vol.getBaseURI().getPath()));
|
||||
}
|
||||
references.close();
|
||||
volumePaths = pathList.toArray(new Path[pathList.size()]);
|
||||
|
|
|
@ -160,7 +160,7 @@ public class OzoneContainer {
|
|||
references = dataset.getFsVolumeReferences();
|
||||
for (int ndx = 0; ndx < references.size(); ndx++) {
|
||||
FsVolumeSpi vol = references.get(ndx);
|
||||
pathList.add(Paths.get(vol.getBasePath()));
|
||||
pathList.add(Paths.get(vol.getBaseURI().getPath()));
|
||||
}
|
||||
references.close();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue