diff options
| author | Daniil Fedotov <dfedotov@pivotal.io> | 2016-02-29 18:10:07 +0000 |
|---|---|---|
| committer | Daniil Fedotov <dfedotov@pivotal.io> | 2016-02-29 18:10:07 +0000 |
| commit | ee55dd5b1c454c57b85cb34743117545aaa0dbcd (patch) | |
| tree | 7c7e7eeca30b2c40943ecdec50a440bdfe706022 /priv | |
| parent | 814b2a6ca7b4c6b5fa4e2cb3d2427a0ae145c8a9 (diff) | |
| download | rabbitmq-server-git-ee55dd5b1c454c57b85cb34743117545aaa0dbcd.tar.gz | |
Missing ssl options
Diffstat (limited to 'priv')
| -rw-r--r-- | priv/schema/rabbitmq.schema | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/priv/schema/rabbitmq.schema b/priv/schema/rabbitmq.schema index f652c76b0b..7aca648986 100644 --- a/priv/schema/rabbitmq.schema +++ b/priv/schema/rabbitmq.schema @@ -140,6 +140,9 @@ end}. %% SSL options section ======================================================== +{mapping, "ssl_allow_poodle_attack", "rabbit.ssl_allow_poodle_attack", +[{datatype, {enum, [true, false]}}]}. + {mapping, "ssl_options", "rabbit.ssl_options", [ {datatype, {enum, [none]}} ]}. @@ -244,7 +247,7 @@ end}. {translation, "rabbit.ssl_options.versions", fun(Conf) -> - Settings = cuttlefish_variable:filter_by_prefix("ssl_options.cacerts", Conf), + Settings = cuttlefish_variable:filter_by_prefix("ssl_options.versions", Conf), [ V || {_, V} <- Settings ] end}. |
