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 =
|
Url1 =
|
||||||
case Path of
|
case Path of
|
||||||
<<>> -> Url;
|
<<>> -> Url;
|
||||||
_ -> emqx_bridge_http_connector:join_paths(Url, Path)
|
_ -> iolist_to_binary(emqx_bridge_http_connector:join_paths(Url, Path))
|
||||||
end,
|
end,
|
||||||
|
|
||||||
BridgeV1Config4#{
|
BridgeV1Config4#{
|
||||||
|
|
Loading…
Reference in New Issue