HDFS-8212. DistributedFileSystem.createErasureCodingZone should pass schema in FileSystemLinkResolver. Contributed by Tsz Wo Nicholas Sze.
This commit is contained in:
parent
e9d85bbf30
commit
2f11109bb0
|
@ -110,3 +110,6 @@
|
|||
|
||||
HDFS-8216. TestDFSStripedOutputStream should use BlockReaderTestUtil to
|
||||
create BlockReader. (szetszwo via Zhe Zhang)
|
||||
|
||||
HDFS-8212. DistributedFileSystem.createErasureCodingZone should pass schema
|
||||
in FileSystemLinkResolver. (szetszwo via Zhe Zhang)
|
||||
|
|
|
@ -2290,7 +2290,7 @@ public class DistributedFileSystem extends FileSystem {
|
|||
@Override
|
||||
public Void doCall(final Path p) throws IOException,
|
||||
UnresolvedLinkException {
|
||||
dfs.createErasureCodingZone(getPathName(p), null);
|
||||
dfs.createErasureCodingZone(getPathName(p), schema);
|
||||
return null;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue