Skip to content
This repository was archived by the owner on Nov 17, 2020. It is now read-only.

Commit cf5ae3d

Browse files
committed
dialyzer fix
1 parent 6a4ef50 commit cf5ae3d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/rabbit_core_metrics.erl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,9 @@
101101
%% API
102102
%%----------------------------------------------------------------------------
103103
init() ->
104-
[ets:new(Table, [Type, public, named_table, {write_concurrency, true},
105-
{read_concurrency, true}])
106-
|| {Table, Type} <- ?CORE_TABLES ++ ?CORE_EXTRA_TABLES ++ [{quorum_mapping, set}]],
104+
_ = [ets:new(Table, [Type, public, named_table, {write_concurrency, true},
105+
{read_concurrency, true}])
106+
|| {Table, Type} <- ?CORE_TABLES ++ ?CORE_EXTRA_TABLES ++ [{quorum_mapping, set}]],
107107
ok.
108108

109109
terminate() ->

0 commit comments

Comments
 (0)