mirror of https://github.com/apache/lucene.git
SOLR-11182: A split shard failure on IOException should be logged
This commit is contained in:
parent
78b6e5031a
commit
8cd2942e35
|
@ -420,6 +420,8 @@ Bug Fixes
|
|||
* SOLR-11163: Fix contrib/ltr Normalizer persistence after solr core reload or restart.
|
||||
(Yuki Yano via Christine Poerschke)
|
||||
|
||||
* SOLR-11182: A split shard failure on IOException should be logged (Varun Thacker)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -911,6 +911,7 @@ public class DirectUpdateHandler2 extends UpdateHandler implements SolrCoreState
|
|||
} catch (IOException e) {
|
||||
numErrors.increment();
|
||||
numErrorsCumulative.mark();
|
||||
throw e;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue