summaryrefslogtreecommitdiff
path: root/priv
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2020-06-03 20:27:05 +0300
committerMichael Klishin <michael@clojurewerkz.org>2020-06-03 20:27:05 +0300
commitc8b4adacffeedde5dbf5d2c86a5e20ddb145103a (patch)
treefe3fb44fd7d6a7c501a42b6f93d302ca1f2c2dc1 /priv
parent30bd4bb0a62b59775780f66ce0bde461ebc4a41b (diff)
downloadrabbitmq-server-git-c8b4adacffeedde5dbf5d2c86a5e20ddb145103a.tar.gz
Expose new message store worker timeout setting to rabbitmq.conf
Part of #2324.
Diffstat (limited to 'priv')
-rw-r--r--priv/schema/rabbit.schema6
1 files changed, 6 insertions, 0 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema
index 9552fb0cf3..1d95e5e0b3 100644
--- a/priv/schema/rabbit.schema
+++ b/priv/schema/rabbit.schema
@@ -1090,6 +1090,12 @@ end}.
{mapping, "mnesia_table_loading_retry_limit", "rabbit.mnesia_table_loading_retry_limit",
[{datatype, integer}]}.
+{mapping, "message_store_shutdown_timeout", "rabbit.message_store_shutdown_timeout",
+ [
+ {datatype, integer},
+ {validators, ["non_zero_positive_integer"]}
+ ]}.
+
%% Size in bytes below which to embed messages in the queue index. See
%% https://www.rabbitmq.com/persistence-conf.html
%%