HDFS-15396. Fix TestViewFileSystemOverloadSchemeHdfsFileSystemContract#testListStatusRootDir. Contributed by Ayush Saxena.
(cherry picked from commit a8610c15c4
)
This commit is contained in:
parent
c3bef4906c
commit
7b29019eea
@ -1202,6 +1202,9 @@ public FileStatus[] listStatus(Path f) throws AccessControlException,
|
||||
INodeLink<FileSystem> link = (INodeLink<FileSystem>) inode;
|
||||
try {
|
||||
String linkedPath = link.getTargetFileSystem().getUri().getPath();
|
||||
if("".equals(linkedPath)) {
|
||||
linkedPath = "/";
|
||||
}
|
||||
FileStatus status =
|
||||
((ChRootedFileSystem)link.getTargetFileSystem())
|
||||
.getMyFs().getFileStatus(new Path(linkedPath));
|
||||
|
Loading…
Reference in New Issue
Block a user