You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
%
% This file is managed by Ansible.
% Do not edit this file manually.
% Any changes will be automatically reverted.
%
[
{rabbit, [
{ssl_listeners, [
5671
]},
{ssl_options, [
{versions, [
"tlsv1.2"
]}
]}
]}
].
please notice "tlsv1.2" instead of 'tlsv1.2'
double quoted instead of single quoted.
and it is invalid config for rabbitmq
The text was updated successfully, but these errors were encountered:
the library
config-encoder-macros
is not able to generate single quote value for rabbitmq config, it means it will generate wrong configuration file.It leads to not possible to configure correctly rabbitmq.
e.g.:
the output is:
please notice
"tlsv1.2"
instead of'tlsv1.2'
double quoted instead of single quoted.
and it is invalid config for rabbitmq
The text was updated successfully, but these errors were encountered: