diff options
| author | Michael Klishin <michael@novemberain.com> | 2018-02-27 05:51:35 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-27 05:51:35 +0300 |
| commit | 13229c94a08e294c65cc1b0a88f18e4b4e2658f7 (patch) | |
| tree | 7ffd0dfc3a127b207132b7bf62e2524ddad9cd2d /priv | |
| parent | c364f9e5539c5c1a9a89f2968e6100934171e076 (diff) | |
| parent | 92b1de6630d299415feb4fe863d5db0b06142e8d (diff) | |
| download | rabbitmq-server-git-13229c94a08e294c65cc1b0a88f18e4b4e2658f7.tar.gz | |
Merge pull request #1532 from rabbitmq/rabbitmq-server-1531-master
Correct generated randomized startup delay range key (master)
Diffstat (limited to 'priv')
| -rw-r--r-- | priv/schema/rabbit.schema | 6 |
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), |
