diff options
| author | Luke Bakken <lbakken@pivotal.io> | 2018-12-31 11:46:42 -0800 |
|---|---|---|
| committer | Luke Bakken <lbakken@pivotal.io> | 2018-12-31 11:46:42 -0800 |
| commit | b25381a3f1089500d2bdb5d14289aced767cf057 (patch) | |
| tree | baab204c7a628ae90ed6231d1ab1f11adb696049 /priv/schema | |
| parent | 93164c657e738747fb2816eb78c52a6453892f0f (diff) | |
| download | rabbitmq-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
Diffstat (limited to 'priv/schema')
| -rw-r--r-- | priv/schema/rabbit.schema | 2 |
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}. %% =========================================================================== |
