fix: elvis style error
This commit is contained in:
parent
f199a0f24a
commit
145ed2e632
|
@ -171,8 +171,11 @@ check_and_simplify_bridge_v1_config(#{
|
||||||
}) ->
|
}) ->
|
||||||
%% We should crash beacuse we don't support upgrading when ingress and egress exist at the same time
|
%% We should crash beacuse we don't support upgrading when ingress and egress exist at the same time
|
||||||
error(
|
error(
|
||||||
{unsupported_config,
|
{unsupported_config, <<
|
||||||
<<"Upgrade not supported when ingress and egress exist in the same MQTT bridge. Please divide the egress and ingress part to separate bridges in the configuration.">>}
|
"Upgrade not supported when ingress and egress exist in the "
|
||||||
|
"same MQTT bridge. Please divide the egress and ingress part "
|
||||||
|
"to separate bridges in the configuration."
|
||||||
|
>>}
|
||||||
);
|
);
|
||||||
check_and_simplify_bridge_v1_config(SimplifiedConfig) ->
|
check_and_simplify_bridge_v1_config(SimplifiedConfig) ->
|
||||||
SimplifiedConfig.
|
SimplifiedConfig.
|
||||||
|
|
Loading…
Reference in New Issue