Przeglądaj źródła

HDFS-14705. Remove unused configuration dfs.min.replication. Contributed by CR Hota.

Wei-Chiu Chuang 5 lat temu
rodzic
commit
2265872c2d

+ 0 - 2
hadoop-hdfs-project/hadoop-hdfs/src/test/java/org/apache/hadoop/hdfs/TestFileAppend.java

@@ -667,7 +667,6 @@ public class TestFileAppend{
     Configuration conf = new HdfsConfiguration();
     conf.setInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, 1024);
     conf.setInt(DFSConfigKeys.DFS_REPLICATION_KEY, 1);
-    conf.setInt("dfs.min.replication", 1);
     File builderBaseDir = new File(GenericTestUtils.getRandomizedTempPath());
     MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf, builderBaseDir)
         .numDataNodes(1).build();
@@ -693,7 +692,6 @@ public class TestFileAppend{
     Configuration conf = new HdfsConfiguration();
     conf.setInt(DFSConfigKeys.DFS_BLOCK_SIZE_KEY, 1024);
     conf.setInt(DFSConfigKeys.DFS_REPLICATION_KEY, 1);
-    conf.setInt("dfs.min.replication", 1);
 
     File builderBaseDir = new File(GenericTestUtils.getRandomizedTempPath());
     MiniDFSCluster cluster = new MiniDFSCluster.Builder(conf, builderBaseDir)