SOLR-13866: Override getSolrMetricsContext in DirectUpdateHandler2 (#971)

This commit is contained in:
Tomas Fernandez Lobbe 2019-10-23 16:13:26 -07:00 committed by GitHub
parent 98f08d39aa
commit dc9dbd266b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 0 deletions

View File

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

View File

@ -1014,5 +1014,10 @@ public class DirectUpdateHandler2 extends UpdateHandler implements SolrCoreState
public CommitTracker getSoftCommitTracker() {
return softCommitTracker;
}
@Override
public SolrMetricsContext getSolrMetricsContext() {
return solrMetricsContext;
}
}