|
@@ -90,8 +90,8 @@ public class TrashPolicyDefault extends TrashPolicy {
|
|
|
FS_TRASH_CHECKPOINT_INTERVAL_KEY, FS_TRASH_CHECKPOINT_INTERVAL_DEFAULT)
|
|
|
* MSECS_PER_MINUTE);
|
|
|
LOG.info("Namenode trash configuration: Deletion interval = " +
|
|
|
- this.deletionInterval + " minutes, Emptier interval = " +
|
|
|
- this.emptierInterval + " minutes.");
|
|
|
+ (this.deletionInterval / MSECS_PER_MINUTE) + " minutes, Emptier interval = " +
|
|
|
+ (this.emptierInterval / MSECS_PER_MINUTE) + " minutes.");
|
|
|
}
|
|
|
|
|
|
private Path makeTrashRelativePath(Path basePath, Path rmFilePath) {
|