summaryrefslogtreecommitdiff
path: root/priv/schema
diff options
context:
space:
mode:
authorMichael Klishin <michael@novemberain.com>2018-12-03 22:18:19 +0300
committerGitHub <noreply@github.com>2018-12-03 22:18:19 +0300
commit86f5279a69c99e2bd2d14fb758e8fc56bf744364 (patch)
tree35839dd3ddab2474c872b13c57dbeb637415511d /priv/schema
parent812706707f300b735f22a56b7ff713cd20f4c7b9 (diff)
parentc7243b3db636f5cbfc1084f6b76c071856c6f7e3 (diff)
downloadrabbitmq-server-git-86f5279a69c99e2bd2d14fb758e8fc56bf744364.tar.gz
Merge pull request #1785 from rabbitmq/rabbitmq-server-1784
Make it possible to configure kernel.inet_dist_listen_{min,max} via new style config
Diffstat (limited to 'priv/schema')
-rw-r--r--priv/schema/rabbit.schema10
1 files changed, 10 insertions, 0 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema
index 9cee795296..5c6078a413 100644
--- a/priv/schema/rabbit.schema
+++ b/priv/schema/rabbit.schema
@@ -1342,6 +1342,16 @@ end}.
{validators, ["non_zero_positive_integer"]}
]}.
+{mapping, "inet_dist_listen_min", "kernel.inet_dist_listen_min",[
+ {datatype, [integer]},
+ {validators, ["non_zero_positive_integer"]}
+]}.
+
+{mapping, "inet_dist_listen_max", "kernel.inet_dist_listen_max",[
+ {datatype, [integer]},
+ {validators, ["non_zero_positive_integer"]}
+]}.
+
% ===============================
% Validators
% ===============================