Skip to content

Commit 67c202b

Browse files
authored
RTI-13888: Use write_concurrency auto ets tweak (#55)
* Use write_concurrency auto ets tweak * Changing minimum otp version to 25
1 parent 013c8cc commit 67c202b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/erlang.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
strategy:
1515
matrix:
16-
otp: ['23.3', '24.3', '25.2.1']
16+
otp: ['25.2.1']
1717
rebar: ['3.20.0']
1818

1919
steps:

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{erl_opts,
22
[warn_unused_import, warn_export_vars, warnings_as_errors, verbose, report, debug_info]}.
33

4-
{minimum_otp_vsn, "23"}.
4+
{minimum_otp_vsn, "25"}.
55

66
{cover_enabled, true}.
77

src/spillway_srv.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,5 +116,5 @@ create_ets() ->
116116
public,
117117
{keypos, #counter.name},
118118
{read_concurrency, true},
119-
{write_concurrency, true},
119+
{write_concurrency, auto},
120120
{decentralized_counters, true}]).

0 commit comments

Comments
 (0)