HADOOP-15733. Correct the log when Invalid emptier Interval configured. Contributed by Ayush Saxena

This commit is contained in:
Brahma Reddy Battula 2018-09-14 07:32:27 +05:30
parent 291dcf2247
commit ef5c776a42

View File

@ -249,7 +249,7 @@ protected class Emptier implements Runnable {
LOG.info("Namenode trash configuration: Deletion interval = " LOG.info("Namenode trash configuration: Deletion interval = "
+ (deletionInterval / MSECS_PER_MINUTE) + (deletionInterval / MSECS_PER_MINUTE)
+ " minutes, Emptier interval = " + " minutes, Emptier interval = "
+ (emptierInterval / MSECS_PER_MINUTE) + " minutes."); + (this.emptierInterval / MSECS_PER_MINUTE) + " minutes.");
} }
@Override @Override