mirror of
https://github.com/apache/lucene.git
synced 2025-02-09 03:25:15 +00:00
SOLR-6920, SOLR-6640: Do not log an error when a file does not exist for comparison.
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1658089 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
f198592418
commit
f0e9183c29
@ -876,6 +876,9 @@ public class SnapPuller {
|
|||||||
return compareResult;
|
return compareResult;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
} catch (NoSuchFileException | FileNotFoundException e) {
|
||||||
|
compareResult.equal = false;
|
||||||
|
return compareResult;
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
LOG.error("Could not read file " + filename + ". Downloading it again", e);
|
LOG.error("Could not read file " + filename + ". Downloading it again", e);
|
||||||
compareResult.equal = false;
|
compareResult.equal = false;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user