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);
|
TimeUnit.SECONDS, TimeUnit.MILLISECONDS);
|
||||||
if (initBRDelay >= blockReportInterval) {
|
if (initBRDelay >= blockReportInterval) {
|
||||||
initBRDelay = 0;
|
initBRDelay = 0;
|
||||||
DataNode.LOG.info("dfs.blockreport.initialDelay is "
|
DataNode.LOG.info(DFS_BLOCKREPORT_INITIAL_DELAY_KEY + " is "
|
||||||
+ "greater than or equal to" + "dfs.blockreport.intervalMsec."
|
+ "greater than or equal to" + DFS_BLOCKREPORT_INTERVAL_MSEC_KEY
|
||||||
+ " Setting initial delay to 0 msec:");
|
+ ". Setting initial delay to 0 msec:");
|
||||||
}
|
}
|
||||||
initialBlockReportDelayMs = initBRDelay;
|
initialBlockReportDelayMs = initBRDelay;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue