SOLR-9474: MiniSolrCloudCluster restarts jetties using different ports by default

This commit is contained in:
Alan Woodward 2016-09-04 20:20:46 +01:00
parent a79a8edbb4
commit 89a91ec99d
2 changed files with 4 additions and 1 deletions

View File

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

View File

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