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 class ViewFileSystem extends FileSystem {
|
||||||
INodeLink<FileSystem> link = (INodeLink<FileSystem>) inode;
|
INodeLink<FileSystem> link = (INodeLink<FileSystem>) inode;
|
||||||
try {
|
try {
|
||||||
String linkedPath = link.getTargetFileSystem().getUri().getPath();
|
String linkedPath = link.getTargetFileSystem().getUri().getPath();
|
||||||
|
if("".equals(linkedPath)) {
|
||||||
|
linkedPath = "/";
|
||||||
|
}
|
||||||
FileStatus status =
|
FileStatus status =
|
||||||
((ChRootedFileSystem)link.getTargetFileSystem())
|
((ChRootedFileSystem)link.getTargetFileSystem())
|
||||||
.getMyFs().getFileStatus(new Path(linkedPath));
|
.getMyFs().getFileStatus(new Path(linkedPath));
|
||||||
|
|
Loading…
Reference in New Issue