Fix test by adding hide_server_info to schema
This commit is contained in:
parent
94bdf2a65e
commit
32e0b1bcd2
|
@ -202,7 +202,7 @@ end}.
|
|||
%% CONNECT frame.
|
||||
%%
|
||||
%% {implicit_connect, true}
|
||||
% ]},
|
||||
|
||||
{mapping, "stomp.implicit_connect", "rabbitmq_stomp.implicit_connect",
|
||||
[{datatype, {enum, [true, false]}}]}.
|
||||
|
||||
|
@ -212,3 +212,10 @@ end}.
|
|||
|
||||
{mapping, "stomp.proxy_protocol", "rabbitmq_stomp.proxy_protocol",
|
||||
[{datatype, {enum, [true, false]}}]}.
|
||||
|
||||
%% Whether or not to hide server info
|
||||
%%
|
||||
%% {hide_server_info, false}
|
||||
|
||||
{mapping, "stomp.hide_server_info", "rabbitmq_stomp.hide_server_info",
|
||||
[{datatype, {enum, [true, false]}}]}.
|
||||
|
|
|
@ -64,7 +64,8 @@
|
|||
{defaults,
|
||||
"stomp.default_user = guest
|
||||
stomp.default_pass = guest
|
||||
stomp.proxy_protocol = false",
|
||||
stomp.proxy_protocol = false
|
||||
stomp.hide_server_info = false",
|
||||
[{rabbitmq_stomp,[{default_user,[{login,"guest"},{passcode,"guest"}]},
|
||||
{proxy_protocol,false},{hide_server_info,false}]}],
|
||||
[rabbitmq_stomp]},
|
||||
|
|
Loading…
Reference in New Issue