HADOOP-11605. FilterFileSystem#create with ChecksumOpt should propagate it to wrapped FS. (gera)
(cherry picked from commit b18d3830ac
)
This commit is contained in:
parent
fe7df5b4d8
commit
5e235802de
|
@ -623,6 +623,9 @@ Release 2.7.0 - UNRELEASED
|
||||||
HADOOP-11615. Update ServiceLevelAuth.md for YARN.
|
HADOOP-11615. Update ServiceLevelAuth.md for YARN.
|
||||||
(Brahma Reddy Battula via aajisaka)
|
(Brahma Reddy Battula via aajisaka)
|
||||||
|
|
||||||
|
HADOOP-11605. FilterFileSystem#create with ChecksumOpt should propagate it
|
||||||
|
to wrapped FS. (gera)
|
||||||
|
|
||||||
Release 2.6.1 - UNRELEASED
|
Release 2.6.1 - UNRELEASED
|
||||||
|
|
||||||
INCOMPATIBLE CHANGES
|
INCOMPATIBLE CHANGES
|
||||||
|
|
|
@ -190,7 +190,7 @@ public class FilterFileSystem extends FileSystem {
|
||||||
Progressable progress,
|
Progressable progress,
|
||||||
ChecksumOpt checksumOpt) throws IOException {
|
ChecksumOpt checksumOpt) throws IOException {
|
||||||
return fs.create(f, permission,
|
return fs.create(f, permission,
|
||||||
flags, bufferSize, replication, blockSize, progress);
|
flags, bufferSize, replication, blockSize, progress, checksumOpt);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue