mirror of https://github.com/apache/lucene.git
SOLR-5867: OverseerCollectionProcessor isn't properly generating https urls in some cases
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1577968 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e7eb819d4b
commit
68b3675ce8
|
@ -172,6 +172,9 @@ Bug Fixes
|
||||||
* SOLR-5861: Recovery should not set onlyIfLeaderActive=true for slice in 'recovery'
|
* SOLR-5861: Recovery should not set onlyIfLeaderActive=true for slice in 'recovery'
|
||||||
state. (shalin)
|
state. (shalin)
|
||||||
|
|
||||||
|
* SOLR-5867: OverseerCollectionProcessor isn't properly generating https urls in some
|
||||||
|
cases. (Steve Davids via shalin)
|
||||||
|
|
||||||
Optimizations
|
Optimizations
|
||||||
----------------------
|
----------------------
|
||||||
* SOLR-1880: Distributed Search skips GET_FIELDS stage if EXECUTE_QUERY
|
* SOLR-1880: Distributed Search skips GET_FIELDS stage if EXECUTE_QUERY
|
||||||
|
|
|
@ -392,7 +392,7 @@ public class OverseerCollectionProcessor implements Runnable, ClosableThread {
|
||||||
params.set("qt", adminPath);
|
params.set("qt", adminPath);
|
||||||
ShardRequest sreq = new ShardRequest();
|
ShardRequest sreq = new ShardRequest();
|
||||||
sreq.purpose = 1;
|
sreq.purpose = 1;
|
||||||
String replica = nodeName.replaceFirst("_", "/");
|
String replica = zkStateReader.getBaseUrlForNodeName(nodeName);
|
||||||
sreq.shards = new String[]{replica};
|
sreq.shards = new String[]{replica};
|
||||||
sreq.actualShards = sreq.shards;
|
sreq.actualShards = sreq.shards;
|
||||||
sreq.params = params;
|
sreq.params = params;
|
||||||
|
|
Loading…
Reference in New Issue