HADOOP-11605. FilterFileSystem#create with ChecksumOpt should propagate it to wrapped FS. (gera)
This commit is contained in:
parent
431e7d84c7
commit
b18d3830ac
|
@ -1031,6 +1031,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
|
||||
|
|
|
@ -190,7 +190,7 @@ public class FilterFileSystem extends FileSystem {
|
|||
Progressable progress,
|
||||
ChecksumOpt checksumOpt) throws IOException {
|
||||
return fs.create(f, permission,
|
||||
flags, bufferSize, replication, blockSize, progress);
|
||||
flags, bufferSize, replication, blockSize, progress, checksumOpt);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Reference in New Issue