HDFS-15396. Fix TestViewFileSystemOverloadSchemeHdfsFileSystemContract#testListStatusRootDir. Contributed by Ayush Saxena.

(cherry picked from commit a8610c15c4)
This commit is contained in:
Ayush Saxena 2020-06-08 01:59:10 +05:30 committed by Uma Maheswara Rao G
parent 0e9b6b0124
commit b720d7770d
1 changed files with 3 additions and 0 deletions

View File

@ -1163,6 +1163,9 @@ public class ViewFileSystem extends FileSystem {
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));