fix: remove test code

This commit is contained in:
DDDHuang 2021-08-12 10:24:46 +08:00
parent 324a036aa8
commit 8efe854f63
1 changed files with 1 additions and 2 deletions

View File

@ -118,8 +118,7 @@ format({Addr, Port}) when is_tuple(Addr) ->
io_lib:format("~s:~w", [inet:ntoa(Addr), Port]).
apps() ->
% Apps = [App || {App, _, _} <- application:loaded_applications(), App =/= emqx_dashboard],
Apps = [App || {App, _, _} <- application:loaded_applications()],
Apps = [App || {App, _, _} <- application:loaded_applications(), App =/= emqx_dashboard],
lists:filter(fun(App) ->
case re:run(atom_to_list(App), "^emqx") of
{match,[{0,4}]} -> true;