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

This commit is contained in:
Luke Bakken 2018-12-31 12:05:46 -08:00
parent cadf37bff5
commit e64516a985
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ end}.
{translation, "rabbitmq_management.ssl_config.ciphers",
fun(Conf) ->
Settings = cuttlefish_variable:filter_by_prefix("management.ssl.ciphers", Conf),
[V || {_, V} <- Settings]
lists:reverse([V || {_, V} <- Settings])
end}.
{mapping, "management.ssl.compress", "rabbitmq_management.ssl_config.cowboy_opts.compress",