Details
-
Sub-task
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
Reviewed
Description
It current passes null and ignores the input schema.
public void createErasureCodingZone(final Path path, final ECSchema schema) throws IOException { Path absF = fixRelativePart(path); new FileSystemLinkResolver<Void>() { @Override public Void doCall(final Path p) throws IOException, UnresolvedLinkException { dfs.createErasureCodingZone(getPathName(p), null); return null; } ... }.resolve(this, absF); }