Ver Fonte

HDFS-14629. Property value Hard Coded in DNConf.java. Contributed by hemanthboyina.

(cherry picked from commit 1c254a8ec78c8dab9111f3ba2709cef20794b73a)
Masatake Iwasaki há 6 anos atrás
pai
commit
ee81a64da7

+ 3 - 3
hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DNConf.java

@@ -203,9 +203,9 @@ public class DNConf {
         TimeUnit.SECONDS, TimeUnit.MILLISECONDS);
     if (initBRDelay >= blockReportInterval) {
       initBRDelay = 0;
-      DataNode.LOG.info("dfs.blockreport.initialDelay is "
-          + "greater than or equal to" + "dfs.blockreport.intervalMsec."
-          + " Setting initial delay to 0 msec:");
+      DataNode.LOG.info(DFS_BLOCKREPORT_INITIAL_DELAY_KEY + " is "
+          + "greater than or equal to" + DFS_BLOCKREPORT_INTERVAL_MSEC_KEY
+          + ".  Setting initial delay to 0 msec:");
     }
     initialBlockReportDelayMs = initBRDelay;