chore(emqx_mgmt_cache): ignore unused return value for dialyer

This commit is contained in:
Zaiming (Stone) Shi 2023-02-02 14:02:34 +01:00
parent 1c748070c1
commit 9a9943d35d
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ start_link() ->
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []). gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).
init([]) -> init([]) ->
ets:new(?MODULE, [set, named_table, public, {keypos, 1}]), _ = ets:new(?MODULE, [set, named_table, public, {keypos, 1}]),
{ok, #{latest_refresh => 0}}. {ok, #{latest_refresh => 0}}.
handle_call(get_sys_memory, _From, State) -> handle_call(get_sys_memory, _From, State) ->