HADOOP-11156. DelegateToFileSystem should implement getFsStatus(final Path f). Contributed by Zhihai Xu.
(cherry picked from commit d7075ada5d
)
This commit is contained in:
parent
5a43b795b7
commit
d4c5a39270
|
@ -8,6 +8,9 @@ Release 2.7.0 - UNRELEASED
|
|||
|
||||
IMPROVEMENTS
|
||||
|
||||
HADOOP-11156. DelegateToFileSystem should implement
|
||||
getFsStatus(final Path f). (Zhihai Xu via wang)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
|
|
@ -128,6 +128,11 @@ public abstract class DelegateToFileSystem extends AbstractFileSystem {
|
|||
return fsImpl.getStatus();
|
||||
}
|
||||
|
||||
@Override
|
||||
public FsStatus getFsStatus(final Path f) throws IOException {
|
||||
return fsImpl.getStatus(f);
|
||||
}
|
||||
|
||||
@Override
|
||||
public FsServerDefaults getServerDefaults() throws IOException {
|
||||
return fsImpl.getServerDefaults();
|
||||
|
|
Loading…
Reference in New Issue