mirror of https://github.com/apache/lucene.git
SOLR-11911: Move simulator reset to @Before method.
This commit is contained in:
parent
af7dfb182e
commit
c1f42906ef
|
@ -80,7 +80,12 @@ public class SimSolrCloudTestCase extends SolrTestCaseJ4 {
|
|||
@Override
|
||||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
if (cluster != null) {
|
||||
}
|
||||
|
||||
@Before
|
||||
public void checkClusterConfiguration() throws Exception {
|
||||
if (cluster == null)
|
||||
throw new RuntimeException("SimCloudManager not configured - have you called configureCluster()?");
|
||||
// clear any persisted configuration
|
||||
cluster.getDistribStateManager().setData(SOLR_AUTOSCALING_CONF_PATH, Utils.toJSON(new ZkNodeProps()), -1);
|
||||
cluster.getDistribStateManager().setData(ZkStateReader.ROLES, Utils.toJSON(new HashMap<>()), -1);
|
||||
|
@ -108,13 +113,6 @@ public class SimSolrCloudTestCase extends SolrTestCaseJ4 {
|
|||
cluster.getTimeSource().sleep(5000);
|
||||
cluster.simResetOpCounts();
|
||||
}
|
||||
}
|
||||
|
||||
@Before
|
||||
public void checkClusterConfiguration() {
|
||||
if (cluster == null)
|
||||
throw new RuntimeException("SimCloudManager not configured - have you called configureCluster()?");
|
||||
}
|
||||
|
||||
protected void removeChildren(String path) throws Exception {
|
||||
if (!cluster.getDistribStateManager().hasData(path)) {
|
||||
|
|
Loading…
Reference in New Issue