Log eventual Solr instances close errors.

We do not want to block on this kind of error, but this should not
silently fail as it may have later consequences.
pull/77/head
luccioman 9 years ago
parent 330768c8a2
commit 8edbcd8ad4

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

Loading…
Cancel
Save