HDFS-8845. DiskChecker should not traverse the entire tree (Chang Li via Colin P. McCabe)
This commit is contained in:
parent
08508ca1c8
commit
39326ba71c
|
@ -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
|
||||
|
|
|
@ -309,7 +309,7 @@ class BlockPoolSlice {
|
|||
}
|
||||
|
||||
void checkDirs() throws DiskErrorException {
|
||||
DiskChecker.checkDirs(finalizedDir);
|
||||
DiskChecker.checkDir(finalizedDir);
|
||||
DiskChecker.checkDir(tmpDir);
|
||||
DiskChecker.checkDir(rbwDir);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue