From ed62d705d8ac17de2b096eaaaa347891582bbe3b Mon Sep 17 00:00:00 2001 From: Badlop Date: Mon, 19 Sep 2016 11:59:40 +0200 Subject: [PATCH] Don't worry about storage_type of the Acl mnesia table (#1206) --- src/acl.erl | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/acl.erl b/src/acl.erl index 14439ce7a..349198182 100644 --- a/src/acl.erl +++ b/src/acl.erl @@ -75,12 +75,6 @@ -export_type([acl/0]). start() -> - case catch mnesia:table_info(acl, storage_type) of - disc_copies -> - mnesia:delete_table(acl); - _ -> - ok - end, mnesia:create_table(acl, [{ram_copies, [node()]}, {type, bag}, {local_content, true},