HADOOP-11156. DelegateToFileSystem should implement getFsStatus(final Path f). Contributed by Zhihai Xu.

This commit is contained in:
Andrew Wang 2014-09-30 16:39:44 -07:00
parent 14d60dadc2
commit d7075ada5d
2 changed files with 8 additions and 0 deletions

View File

@ -347,6 +347,9 @@ Release 2.7.0 - UNRELEASED
IMPROVEMENTS
HADOOP-11156. DelegateToFileSystem should implement
getFsStatus(final Path f). (Zhihai Xu via wang)
OPTIMIZATIONS
BUG FIXES

View File

@ -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();