mirror of https://github.com/apache/lucene.git
SOLR-9474: MiniSolrCloudCluster restarts jetties using different ports by default
This commit is contained in:
parent
a79a8edbb4
commit
89a91ec99d
|
@ -144,6 +144,9 @@ Other Changes
|
|||
|
||||
* SOLR-8961: Add a test module for solr-test-framework (Alan Woodward)
|
||||
|
||||
* SOLR-9474: MiniSolrCloudCluster will not reuse ports by default when
|
||||
restarting its JettySolrRunners (Alan Woodward)
|
||||
|
||||
================== 6.2.0 ==================
|
||||
|
||||
Versions of Major Components
|
||||
|
|
|
@ -374,7 +374,7 @@ public class MiniSolrCloudCluster {
|
|||
* @throws Exception on error
|
||||
*/
|
||||
public JettySolrRunner startJettySolrRunner(JettySolrRunner jetty) throws Exception {
|
||||
jetty.start();
|
||||
jetty.start(false);
|
||||
jettys.add(jetty);
|
||||
return jetty;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue