chore(emqx_mgmt_cache): ignore unused return value for dialyer
This commit is contained in:
parent
1c748070c1
commit
9a9943d35d
|
@ -47,7 +47,7 @@ start_link() ->
|
|||
gen_server:start_link({local, ?MODULE}, ?MODULE, [], []).
|
||||
|
||||
init([]) ->
|
||||
ets:new(?MODULE, [set, named_table, public, {keypos, 1}]),
|
||||
_ = ets:new(?MODULE, [set, named_table, public, {keypos, 1}]),
|
||||
{ok, #{latest_refresh => 0}}.
|
||||
|
||||
handle_call(get_sys_memory, _From, State) ->
|
||||
|
|
Loading…
Reference in New Issue