fix(router): use `ets:new/2` options compatible with OTP 24
While essentially keeping the same effect.
This commit is contained in:
parent
e089fda260
commit
3d133801af
|
@ -117,7 +117,8 @@ mnesia(boot) ->
|
||||||
{storage_properties, [
|
{storage_properties, [
|
||||||
{ets, [
|
{ets, [
|
||||||
{read_concurrency, true},
|
{read_concurrency, true},
|
||||||
{write_concurrency, auto}
|
{write_concurrency, true},
|
||||||
|
{decentralized_counters, true}
|
||||||
]}
|
]}
|
||||||
]}
|
]}
|
||||||
]).
|
]).
|
||||||
|
|
Loading…
Reference in New Issue