HDFS-15514. Remove useless dfs.webhdfs.enabled. Contributed by Fei Hui.

This commit is contained in:
Ayush Saxena 2020-08-07 22:19:17 +05:30
parent 81da221c75
commit 975b6024dd
2 changed files with 0 additions and 4 deletions

View File

@ -121,9 +121,6 @@ public void initializeMemberVariables() {
// Used oddly by DataNode to create new config String
xmlPropsToSkipCompare.add("hadoop.hdfs.configuration.version");
// Skip comparing in branch-2. Removed in trunk with HDFS-7985.
xmlPropsToSkipCompare.add("dfs.webhdfs.enabled");
// Some properties have moved to HdfsClientConfigKeys
xmlPropsToSkipCompare.add("dfs.client.short.circuit.replica.stale.threshold.ms");

View File

@ -39,7 +39,6 @@ public MiniDFSClusterService() {
@Override
protected void serviceInit(Configuration conf) throws Exception {
conf.setBoolean("dfs.webhdfs.enabled", false);
super.serviceInit(conf);
}