mirror of https://github.com/apache/lucene.git
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;
|
||||
}
|
||||
}
|
||||
} catch (NoSuchFileException | FileNotFoundException e) {
|
||||
compareResult.equal = false;
|
||||
return compareResult;
|
||||
} catch (IOException e) {
|
||||
LOG.error("Could not read file " + filename + ". Downloading it again", e);
|
||||
compareResult.equal = false;
|
||||
|
|
Loading…
Reference in New Issue