Field Re-Indexing: prevent endless error loop in ReindexSolrBusyThread on Solr exception (by skipping query causing the exception)

(occured during testing while working on q=store:[* TO *])
pull/1/head
reger 12 years ago
parent 92d3f71b16
commit f2d99053ed

@ -133,6 +133,7 @@ import org.apache.solr.common.SolrInputDocument;
}
}
} catch (final IOException ex) {
ConcurrentLog.warn("MIGRATION-REINDEX", "remove following query from list due to error, q=" + querylist.remove(0));
ConcurrentLog.logException(ex);
} finally {
sem.release();

Loading…
Cancel
Save