turtled пре 7 година
родитељ
комит
475f2a87c6
1 измењених фајлова са 6 додато и 6 уклоњено
  1. 6 6
      src/emqx_ctl.erl

+ 6 - 6
src/emqx_ctl.erl

@@ -54,14 +54,14 @@ run_command([Cmd | Args]) ->
     run_command(list_to_atom(Cmd), Args).
 
 -spec(run_command(cmd(), [string()]) -> ok | {error, term()}).
-run_command(set, []) ->
-    emqx_mgmt_cli_cfg:set_usage(), ok;
+% run_command(set, []) ->
+%     emqx_mgmt_cli_cfg:set_usage(), ok;
 
-run_command(set, Args) ->
-    emqx_mgmt_cli_cfg:run(["config" | Args]), ok;
+% run_command(set, Args) ->
+%     emqx_mgmt_cli_cfg:run(["config" | Args]), ok;
 
-run_command(show, Args) ->
-    emqx_mgmt_cli_cfg:run(["config" | Args]), ok;
+% run_command(show, Args) ->
+%     emqx_mgmt_cli_cfg:run(["config" | Args]), ok;
 
 run_command(help, []) ->
     usage();