summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Bakken <lbakken@pivotal.io>2018-12-31 11:46:42 -0800
committerLuke Bakken <lbakken@pivotal.io>2018-12-31 11:46:42 -0800
commitb25381a3f1089500d2bdb5d14289aced767cf057 (patch)
treebaab204c7a628ae90ed6231d1ab1f11adb696049
parent93164c657e738747fb2816eb78c52a6453892f0f (diff)
downloadrabbitmq-server-git-b25381a3f1089500d2bdb5d14289aced767cf057.tar.gz
Reverse order of ciphers in generated file to ensure they match rabbitmq.conf. The ct helpers will not verify this as the snippets and results are deep sorted
-rw-r--r--priv/schema/rabbit.schema2
1 files changed, 1 insertions, 1 deletions
diff --git a/priv/schema/rabbit.schema b/priv/schema/rabbit.schema
index 5c6078a413..8e5c6164c9 100644
--- a/priv/schema/rabbit.schema
+++ b/priv/schema/rabbit.schema
@@ -258,7 +258,7 @@ end}.
{translation, "rabbit.ssl_options.ciphers",
fun(Conf) ->
Settings = cuttlefish_variable:filter_by_prefix("ssl_options.ciphers", Conf),
- [V || {_, V} <- Settings]
+ lists:reverse([V || {_, V} <- Settings])
end}.
%% ===========================================================================