aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-process
diff options
context:
space:
mode:
authorEric Hartmann <hartmann.eric@gmail.com>2017-03-10 16:24:21 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-03-13 13:54:03 +0100
commit15da428681e063c70717cbf3521bcab1c621a1fb (patch)
treec546f1881047e9e39815073c18ce1df2e7484e03 /server/sonar-process
parent8743da42906ff7030b33c4a13f867f58aa8f99be (diff)
downloadsonarqube-15da428681e063c70717cbf3521bcab1c621a1fb.tar.gz
sonarqube-15da428681e063c70717cbf3521bcab1c621a1fb.zip
SONAR-8818 Rename members & interface properties
Diffstat (limited to 'server/sonar-process')
-rw-r--r--server/sonar-process/src/main/java/org/sonar/process/ProcessProperties.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/server/sonar-process/src/main/java/org/sonar/process/ProcessProperties.java b/server/sonar-process/src/main/java/org/sonar/process/ProcessProperties.java
index 8af47f571ed..e956b0079f5 100644
--- a/server/sonar-process/src/main/java/org/sonar/process/ProcessProperties.java
+++ b/server/sonar-process/src/main/java/org/sonar/process/ProcessProperties.java
@@ -33,9 +33,9 @@ public class ProcessProperties {
public static final String CLUSTER_SEARCH_DISABLED = "sonar.cluster.search.disabled";
public static final String CLUSTER_SEARCH_HOSTS = "sonar.cluster.search.hosts";
public static final String CLUSTER_WEB_DISABLED = "sonar.cluster.web.disabled";
- public static final String CLUSTER_MEMBERS = "sonar.cluster.members";
+ public static final String CLUSTER_HOSTS = "sonar.cluster.hosts";
public static final String CLUSTER_PORT = "sonar.cluster.port";
- public static final String CLUSTER_INTERFACES = "sonar.cluster.interfaces";
+ public static final String CLUSTER_NETWORK_INTERFACES = "sonar.cluster.networkInterfaces";
public static final String CLUSTER_NAME = "sonar.cluster.name";
public static final String HAZELCAST_LOG_LEVEL = "sonar.log.level.app.hazelcast";
public static final String CLUSTER_WEB_LEADER = "sonar.cluster.web.startupLeader";
@@ -139,8 +139,8 @@ public class ProcessProperties {
defaults.put(CLUSTER_WEB_DISABLED, "false");
defaults.put(CLUSTER_SEARCH_DISABLED, "false");
defaults.put(CLUSTER_NAME, "");
- defaults.put(CLUSTER_INTERFACES, "");
- defaults.put(CLUSTER_MEMBERS, "");
+ defaults.put(CLUSTER_NETWORK_INTERFACES, "");
+ defaults.put(CLUSTER_HOSTS, "");
defaults.put(CLUSTER_PORT, "9003");
defaults.put(HAZELCAST_LOG_LEVEL, "WARN");