fix(router): use `ets:new/2` options compatible with OTP 24

While essentially keeping the same effect.
This commit is contained in:
Andrew Mayorov 2023-09-08 18:04:29 +04:00
parent e089fda260
commit 3d133801af
No known key found for this signature in database
GPG Key ID: 2837C62ACFBFED5D
1 changed files with 2 additions and 1 deletions

View File

@ -117,7 +117,8 @@ mnesia(boot) ->
{storage_properties, [
{ets, [
{read_concurrency, true},
{write_concurrency, auto}
{write_concurrency, true},
{decentralized_counters, true}
]}
]}
]).