catch solr close exceptions

This commit is contained in:
Michael Peter Christen 2014-02-09 15:04:46 +01:00
parent 751c128544
commit 195e5868d3

View File

@ -265,7 +265,9 @@ public final class Fulltext {
public void close() {
this.statsDump = null;
this.solrInstances.close();
try {
this.solrInstances.close();
} catch (Throwable e) {}
}
private long lastCommit = 0;