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

(cherry picked from commit ef5c776a42)
This commit is contained in:
Brahma Reddy Battula 2018-09-14 07:32:27 +05:30
parent 829399a9f3
commit c7973292bb
1 changed files with 1 additions and 1 deletions

View File

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