This is an automated email from the ASF dual-hosted git repository.

iwasakims pushed a commit to branch branch-3.1
in repository https://gitbox.apache.org/repos/asf/hadoop.git


The following commit(s) were added to refs/heads/branch-3.1 by this push:
     new 02ae1d6  HDFS-14629. Property value Hard Coded in DNConf.java. 
Contributed by hemanthboyina.
02ae1d6 is described below

commit 02ae1d6071593df62393de06bdc13f3b8385feb4
Author: Masatake Iwasaki <[email protected]>
AuthorDate: Thu Jul 4 23:20:01 2019 +0900

    HDFS-14629. Property value Hard Coded in DNConf.java. Contributed by 
hemanthboyina.
    
    (cherry picked from commit 1c254a8ec78c8dab9111f3ba2709cef20794b73a)
---
 .../main/java/org/apache/hadoop/hdfs/server/datanode/DNConf.java    | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DNConf.java
 
b/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DNConf.java
index 2f0ef78..4177e0e 100644
--- 
a/hadoop-hdfs-project/hadoop-hdfs/src/main/java/org/apache/hadoop/hdfs/server/datanode/DNConf.java
+++ 
b/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;
     


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to