You are viewing a plain text version of this content. The canonical link for it is here.
Posted to common-commits@hadoop.apache.org by iw...@apache.org on 2019/07/04 14:49:01 UTC

[hadoop] branch trunk updated: HDFS-14629. Property value Hard Coded in DNConf.java. Contributed by hemanthboyina.

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

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


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

commit 1c254a8ec78c8dab9111f3ba2709cef20794b73a
Author: Masatake Iwasaki <iw...@apache.org>
AuthorDate: Thu Jul 4 23:20:01 2019 +0900

    HDFS-14629. Property value Hard Coded in DNConf.java. Contributed by hemanthboyina.
---
 .../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 00ac64c..c756ed0 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
@@ -208,9 +208,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: common-commits-unsubscribe@hadoop.apache.org
For additional commands, e-mail: common-commits-help@hadoop.apache.org