Преглед изворни кода

fix(emqx_conf): merge issues

Shawn пре 4 година
родитељ
комит
ea3c809287
1 измењених фајлова са 1 додато и 4 уклоњено
  1. 1 4
      apps/emqx_conf/src/emqx_conf.erl

+ 1 - 4
apps/emqx_conf/src/emqx_conf.erl

@@ -81,10 +81,7 @@ get_node_and_config(KeyPath) ->
     {ok, emqx_config:update_result()} | {error, emqx_config:update_error()}.
 update(KeyPath, UpdateReq, Opts0) ->
     Args = [KeyPath, UpdateReq, Opts0],
-    case multicall(emqx, update_config, Args) of
-        {ok, _TnxId, Res} -> Res;
-        {error, Res} -> Res
-    end.
+    multicall(emqx, update_config, Args).
 
 %% @doc Update the specified node's key path in local-override.conf.
 -spec update(node(), emqx_map_lib:config_key_path(), emqx_config:update_request(),