summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorMichael Klishin <michael@novemberain.com>2018-02-27 07:05:12 +0300
committerGitHub <noreply@github.com>2018-02-27 07:05:12 +0300
commit884003da8d6fd4406b65114512aee94d3d5defe5 (patch)
tree97544bc2681cac03f68d4a903704667a2cb5b50c /priv
parent631f822f7dd7688d437fa7324827c5ff795756d6 (diff)
parent668425ee1796db2310e0761ee09d85923606905c (diff)
downloadrabbitmq-server-git-884003da8d6fd4406b65114512aee94d3d5defe5.tar.gz
Merge pull request #1533 from rabbitmq/rabbitmq-server-1531v3.7.4-rc.4
Correct generated randomized startup delay range key
Diffstat (limited to 'priv')
-rw-r--r--priv/schema/rabbit.schema6
1 files changed, 3 insertions, 3 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema
index a8a36ad87d..359abeb117 100644
--- a/priv/schema/rabbit.schema
+++ b/priv/schema/rabbit.schema
@@ -869,12 +869,12 @@ end}.
%% Cluster formation: Randomized startup delay
-{mapping, "cluster_formation.randomized_startup_delay_range.min", "rabbit.cluster_formation.randomized_delay_range",
+{mapping, "cluster_formation.randomized_startup_delay_range.min", "rabbit.cluster_formation.randomized_startup_delay_range",
[{datatype, integer}]}.
-{mapping, "cluster_formation.randomized_startup_delay_range.max", "rabbit.cluster_formation.randomized_delay_range",
+{mapping, "cluster_formation.randomized_startup_delay_range.max", "rabbit.cluster_formation.randomized_startup_delay_range",
[{datatype, integer}]}.
-{translation, "rabbit.cluster_formation.randomized_delay_range",
+{translation, "rabbit.cluster_formation.randomized_startup_delay_range",
fun(Conf) ->
Min = cuttlefish:conf_get("cluster_formation.randomized_startup_delay_range.min", Conf, undefined),
Max = cuttlefish:conf_get("cluster_formation.randomized_startup_delay_range.max", Conf, undefined),