HDFS-8845. DiskChecker should not traverse the entire tree (Chang Li via Colin P. McCabe)

This commit is contained in:
Colin Patrick Mccabe 2015-08-17 15:24:56 -07:00
parent 08508ca1c8
commit 39326ba71c
2 changed files with 4 additions and 1 deletions

View File

@ -467,6 +467,9 @@ Release 2.8.0 - UNRELEASED
HDFS-8792. BlockManager#postponedMisreplicatedBlocks should use a
LightWeightHashSet to save memory (Yi Liu via Colin P. McCabe)
HDFS-8845. DiskChecker should not traverse the entire tree (Chang Li via
Colin P. McCabe)
BUG FIXES
HDFS-8091: ACLStatus and XAttributes should be presented to

View File

@ -309,7 +309,7 @@ class BlockPoolSlice {
}
void checkDirs() throws DiskErrorException {
DiskChecker.checkDirs(finalizedDir);
DiskChecker.checkDir(finalizedDir);
DiskChecker.checkDir(tmpDir);
DiskChecker.checkDir(rbwDir);
}