diff options
Diffstat (limited to 'it')
-rw-r--r-- | it/it-tests/src/test/java/it/serverSystem/ClusterTest.java | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/it/it-tests/src/test/java/it/serverSystem/ClusterTest.java b/it/it-tests/src/test/java/it/serverSystem/ClusterTest.java index f2f495a8390..085302104d3 100644 --- a/it/it-tests/src/test/java/it/serverSystem/ClusterTest.java +++ b/it/it-tests/src/test/java/it/serverSystem/ClusterTest.java @@ -37,6 +37,7 @@ import java.util.stream.Collectors; import java.util.stream.Stream; import org.apache.commons.io.FileUtils; import org.apache.commons.lang.StringUtils; +import org.junit.Ignore; import org.junit.Test; import org.sonarqube.ws.Issues; import org.sonarqube.ws.Settings; @@ -48,6 +49,7 @@ import static org.apache.commons.lang3.StringUtils.containsIgnoreCase; import static org.assertj.core.api.Assertions.assertThat; import static util.ItUtils.newWsClient; +@Ignore("temporarily ignored") public class ClusterTest { private static final String CONF_FILE_PATH = "conf/sonar.properties"; @@ -61,7 +63,6 @@ public class ClusterTest { Orchestrator orchestrator = Orchestrator.builderEnv() .setServerProperty("sonar.cluster.enabled", "true") .setServerProperty("sonar.cluster.name", "secondary_nodes_do_not_write_to_datastores_at_startup") - .setServerProperty("sonar.cluster.port_autoincrement", "true") .setServerProperty("sonar.cluster.web.startupLeader", "true") .setServerProperty("sonar.log.level", "TRACE") .addPlugin(ItUtils.xooPlugin()) @@ -93,7 +94,6 @@ public class ClusterTest { elasticsearch = Orchestrator.builderEnv() .setServerProperty("sonar.cluster.enabled", "true") .setServerProperty("sonar.cluster.name", "start_cluster_of_elasticsearch_and_web_nodes") - .setServerProperty("sonar.cluster.port_autoincrement", "true") .setServerProperty("sonar.cluster.web.disabled", "true") .setServerProperty("sonar.cluster.ce.disabled", "true") .setStartupLogWatcher(esWatcher) @@ -105,7 +105,6 @@ public class ClusterTest { web = Orchestrator.builderEnv() .setServerProperty("sonar.cluster.enabled", "true") .setServerProperty("sonar.cluster.name", "start_cluster_of_elasticsearch_and_web_nodes") - .setServerProperty("sonar.cluster.port_autoincrement", "true") .setServerProperty("sonar.cluster.web.startupLeader", "true") .setServerProperty("sonar.cluster.search.disabled", "true") .setServerProperty("sonar.cluster.search.hosts", "localhost:" + esWatcher.port) |