HADOOP-15733. Correct the log when Invalid emptier Interval configured. Contributed by Ayush Saxena
(cherry picked from commit ef5c776a42
)
This commit is contained in:
parent
829399a9f3
commit
c7973292bb
|
@ -249,7 +249,7 @@ public class TrashPolicyDefault extends TrashPolicy {
|
||||||
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
|
||||||
|
|
Loading…
Reference in New Issue