HADOOP-11605. FilterFileSystem#create with ChecksumOpt should propagate it to wrapped FS. (gera)

(cherry picked from commit b18d3830ac)
This commit is contained in:
Gera Shegalov 2015-02-17 00:24:37 -08:00
parent fe7df5b4d8
commit 5e235802de
2 changed files with 4 additions and 1 deletions

View File

@ -623,6 +623,9 @@ Release 2.7.0 - UNRELEASED
HADOOP-11615. Update ServiceLevelAuth.md for YARN.
(Brahma Reddy Battula via aajisaka)
HADOOP-11605. FilterFileSystem#create with ChecksumOpt should propagate it
to wrapped FS. (gera)
Release 2.6.1 - UNRELEASED
INCOMPATIBLE CHANGES

View File

@ -190,7 +190,7 @@ public FSDataOutputStream create(Path f,
Progressable progress,
ChecksumOpt checksumOpt) throws IOException {
return fs.create(f, permission,
flags, bufferSize, replication, blockSize, progress);
flags, bufferSize, replication, blockSize, progress, checksumOpt);
}
@Override