refactor(emqx_bridge): fix var names

This commit is contained in:
Stefan Strigler 2023-03-08 16:32:30 +01:00
parent e31f4d6091
commit fb3d101b3a
1 changed files with 3 additions and 3 deletions

View File

@ -50,10 +50,10 @@
-define(NOT_FOUND(Reason), {404, error_msg('NOT_FOUND', Reason)}).
-define(BRIDGE_NOT_FOUND(Type, Name),
-define(BRIDGE_NOT_FOUND(BridgeType, BridgeName),
?NOT_FOUND(
<<"Bridge lookup failed: bridge named '", Name/binary, "' of type ",
(atom_to_binary(Type))/binary, " does not exist.">>
<<"Bridge lookup failed: bridge named '", BridgeName/binary, "' of type ",
(atom_to_binary(BridgeType))/binary, " does not exist.">>
)
).