mirror of https://github.com/apache/lucene.git
SOLR-8433: Adding logging for schemes
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1720768 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4acfcd061a
commit
a7569ce25b
|
@ -93,6 +93,10 @@ public abstract class IterativeMergeStrategy implements MergeStrategy {
|
|||
public CallBack(ShardResponse originalShardResponse, QueryRequest req) {
|
||||
log.info("################ SHARD ADDRESSS ##############:" + originalShardResponse.getShardAddress());
|
||||
log.info("############ HTTP Client #############:"+ httpClient.getClass());
|
||||
List<String> schemes = httpClient.getConnectionManager().getSchemeRegistry().getSchemeNames();
|
||||
for(String scheme : schemes) {
|
||||
log.info("############ Scheme #############:"+ scheme);
|
||||
}
|
||||
|
||||
this.solrClient = new HttpSolrClient(originalShardResponse.getShardAddress(), httpClient);
|
||||
this.req = req;
|
||||
|
|
Loading…
Reference in New Issue