fix: stale ref to emqx_json after rebase

This commit is contained in:
Stefan Strigler 2023-04-14 16:32:42 +02:00
parent 53871e3a2c
commit edd1bc579f
1 changed files with 1 additions and 1 deletions

View File

@ -501,7 +501,7 @@ create_bridge_http(Params) ->
Path = emqx_mgmt_api_test_util:api_path(["bridges"]), Path = emqx_mgmt_api_test_util:api_path(["bridges"]),
AuthHeader = emqx_mgmt_api_test_util:auth_header_(), AuthHeader = emqx_mgmt_api_test_util:auth_header_(),
case emqx_mgmt_api_test_util:request_api(post, Path, "", AuthHeader, Params) of case emqx_mgmt_api_test_util:request_api(post, Path, "", AuthHeader, Params) of
{ok, Res} -> {ok, emqx_json:decode(Res, [return_maps])}; {ok, Res} -> {ok, emqx_utils_json:decode(Res, [return_maps])};
Error -> Error Error -> Error
end. end.