ilooner commented on a change in pull request #1296: DRILL-5365: Prevent plugin config from
changing default fs. Make DrillFileSystem Immutable.
URL: https://github.com/apache/drill/pull/1296#discussion_r202485289
##########
File path: exec/java-exec/src/main/java/org/apache/drill/exec/store/dfs/DrillFileSystem.java
##########
@@ -179,9 +182,16 @@ public FSDataInputStream open(Path f) throws IOException {
return new DrillFSDataInputStream(underlyingFs.open(f), operatorStats);
}
+ /**
+ * This method should never be used on {@link DrillFileSystem} since {@link DrillFileSystem}
is immutable.
+ * @param name
Review comment:
done
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
users@infra.apache.org
With regards,
Apache Git Services
|