Merge pull request #11579 from keynslug/fix/otp-24-compat
fix(router): use `ets:new/2` options compatible with OTP 24
This commit is contained in:
commit
19abb7c99e
|
@ -117,7 +117,8 @@ mnesia(boot) ->
|
|||
{storage_properties, [
|
||||
{ets, [
|
||||
{read_concurrency, true},
|
||||
{write_concurrency, auto}
|
||||
{write_concurrency, true},
|
||||
{decentralized_counters, true}
|
||||
]}
|
||||
]}
|
||||
]).
|
||||
|
|
Loading…
Reference in New Issue