fix(http): compose the url and path in correctly format
This commit is contained in:
parent
6e6e68c902
commit
bd6e9503e6
|
@ -58,7 +58,7 @@ connector_action_config_to_bridge_v1_config(ConnectorConfig, ActionConfig) ->
|
|||
Url1 =
|
||||
case Path of
|
||||
<<>> -> Url;
|
||||
_ -> emqx_bridge_http_connector:join_paths(Url, Path)
|
||||
_ -> iolist_to_binary(emqx_bridge_http_connector:join_paths(Url, Path))
|
||||
end,
|
||||
|
||||
BridgeV1Config4#{
|
||||
|
|
Loading…
Reference in New Issue