HBASE-7955 Remove log "ERROR snapshot.SnapshotFileCache: Snapshot directory doesn't exist"
git-svn-id: https://svn.apache.org/repos/asf/hbase/trunk@1451364 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9b1ec93ee3
commit
bcaf397321
|
@ -188,7 +188,6 @@ public class SnapshotFileCache implements Stoppable {
|
||||||
try {
|
try {
|
||||||
status = fs.getFileStatus(snapshotDir);
|
status = fs.getFileStatus(snapshotDir);
|
||||||
} catch (FileNotFoundException e) {
|
} catch (FileNotFoundException e) {
|
||||||
LOG.error("Snapshot directory: " + snapshotDir + " doesn't exist");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// if the snapshot directory wasn't modified since we last check, we are done
|
// if the snapshot directory wasn't modified since we last check, we are done
|
||||||
|
|
Loading…
Reference in New Issue