Skip to content

Commit

Permalink
HDFS-8845. DiskChecker should not traverse the entire tree (Chang Li …
Browse files Browse the repository at this point in the history
…via Colin P. McCabe)
  • Loading branch information
Colin Patrick Mccabe committed Aug 17, 2015
1 parent c77bd6a commit ec183fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions hadoop-hdfs-project/hadoop-hdfs/CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -810,6 +810,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-7501. TransactionsSinceLastCheckpoint can be negative on SBNs.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ File activateSavedReplica(Block b, File metaFile, File blockFile)
}

void checkDirs() throws DiskErrorException {
DiskChecker.checkDirs(finalizedDir);
DiskChecker.checkDir(finalizedDir);
DiskChecker.checkDir(tmpDir);
DiskChecker.checkDir(rbwDir);
}
Expand Down

0 comments on commit ec183fa

Please sign in to comment.