aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-process
diff options
context:
space:
mode:
authorEric Hartmann <hartmann.eric@gmail.com>2017-08-16 18:04:18 +0200
committerSimon Brandhof <simon.brandhof@sonarsource.com>2017-09-05 14:24:13 +0200
commitd63783420e7d1789f3dfe15ae1100ad2f4e7a510 (patch)
tree1b35442be7158972d8d7325c42c1e7a36664f05f /server/sonar-process
parentfa97b5981a4bf8511f285577b5623c07e5130216 (diff)
downloadsonarqube-d63783420e7d1789f3dfe15ae1100ad2f4e7a510.tar.gz
sonarqube-d63783420e7d1789f3dfe15ae1100ad2f4e7a510.zip
SONAR-9731 Update clustering property names
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 802c4bf27a6..a4bd2f15e35 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,8 +33,8 @@ public class ProcessProperties {
public static final String CLUSTER_NODE_TYPE = "sonar.cluster.node.type";
public static final String CLUSTER_SEARCH_HOSTS = "sonar.cluster.search.hosts";
public static final String CLUSTER_HOSTS = "sonar.cluster.hosts";
- public static final String CLUSTER_PORT = "sonar.cluster.port";
- public static final String CLUSTER_NETWORK_INTERFACES = "sonar.cluster.networkInterfaces";
+ public static final String CLUSTER_NODE_PORT = "sonar.cluster.node.port";
+ public static final String CLUSTER_NODE_HOST = "sonar.cluster.node.host";
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";
@@ -137,9 +137,9 @@ public class ProcessProperties {
defaults.put(CLUSTER_ENABLED, "false");
defaults.put(CLUSTER_NAME, "sonarqube");
- defaults.put(CLUSTER_NETWORK_INTERFACES, "");
+ defaults.put(CLUSTER_NODE_HOST, "");
defaults.put(CLUSTER_HOSTS, "");
- defaults.put(CLUSTER_PORT, "9003");
+ defaults.put(CLUSTER_NODE_PORT, "9003");
defaults.put(HAZELCAST_LOG_LEVEL, "WARN");
return defaults;