HDFS-14629. Property value Hard Coded in DNConf.java. Contributed by hemanthboyina.
This commit is contained in:
parent
729cb3aefe
commit
1c254a8ec7
|
@ -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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue