Skip to content

Commit

Permalink
Prevent parallel execution issues
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira committed Jul 6, 2021
1 parent 6d8580d commit c5c2adb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/elvis_rulesets.erl
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ rules(Group) ->
ensure_clean_table() ->
case ets:info(?MODULE) of
undefined ->
ets:new(?MODULE, [set, named_table, {keypos, 1}]);
ets:new(?MODULE, [set, named_table, {keypos, 1}, public]);
_ ->
true = ets:delete_all_objects(?MODULE),
?MODULE
Expand Down

0 comments on commit c5c2adb

Please sign in to comment.