catch solr close exceptions

pull/1/head
Michael Peter Christen 11 years ago
parent 751c128544
commit 195e5868d3

@ -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;

Loading…
Cancel
Save