summaryrefslogtreecommitdiff
path: root/priv/schema
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2019-08-12 21:55:15 +1000
committerMichael Klishin <michael@clojurewerkz.org>2019-08-12 21:55:15 +1000
commit1aba6fa06b040ea888c37be123d003bcd3af15f0 (patch)
treeaedbf265ab6dd0348f8ed2133bf57978d8a7f873 /priv/schema
parentd6e7c3841c5f01933e9182da1701bd2ac74eb1ff (diff)
downloadrabbitmq-server-git-1aba6fa06b040ea888c37be123d003bcd3af15f0.tar.gz
Make it possible to pre-configure cluster name via config
Per discussion with @gerhard.
Diffstat (limited to 'priv/schema')
-rw-r--r--priv/schema/rabbit.schema8
1 files changed, 7 insertions, 1 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema
index 44c199ff4d..8c951cbecb 100644
--- a/priv/schema/rabbit.schema
+++ b/priv/schema/rabbit.schema
@@ -383,7 +383,7 @@ end}.
{datatype, {enum, [distinguished_name, common_name]}}
]}.
-%% SSL handshake timeout, in milliseconds.
+%% TLS handshake timeout, in milliseconds.
%%
%% {ssl_handshake_timeout, 5000},
@@ -391,6 +391,12 @@ end}.
{datatype, integer}
]}.
+%% Cluster name
+
+{mapping, "cluster_name", "rabbit.cluster_name", [
+ {datatype, string}
+]}.
+
%% Default worker process pool size. Used to limit maximum concurrency rate
%% of certain operations, e.g. queue initialisation and recovery on node boot.