mirror of https://github.com/apache/lucene.git
SOLR-13866: Override getSolrMetricsContext in DirectUpdateHandler2 (#971)
This commit is contained in:
parent
98f08d39aa
commit
dc9dbd266b
|
@ -127,6 +127,9 @@ Bug Fixes
|
|||
|
||||
* SOLR-9802: Fix grouping failure for date field in solrcloud (Erick Erickson, Munendra S N, Vitaly Lavrov)
|
||||
|
||||
* SOLR-13866: Fix bug introduced by SOLR-13677 that caused DirectUpdateHandler2 stats to not be available via /admin/plugins
|
||||
handler (Tomás Fernández Löbbe)
|
||||
|
||||
Other Changes
|
||||
---------------------
|
||||
|
||||
|
|
|
@ -1014,5 +1014,10 @@ public class DirectUpdateHandler2 extends UpdateHandler implements SolrCoreState
|
|||
public CommitTracker getSoftCommitTracker() {
|
||||
return softCommitTracker;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SolrMetricsContext getSolrMetricsContext() {
|
||||
return solrMetricsContext;
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue