Skip to content

Commit 2ae87e9

Browse files
Merge pull request #594 from rabbitmq/mk-gen-batch-server-0.9.1
Bump `gen_batch_server` to `0.9.1`
2 parents 13a01fc + 8126773 commit 2ae87e9

5 files changed

Lines changed: 16 additions & 14 deletions

File tree

.github/workflows/erlang.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,28 +14,30 @@ jobs:
1414
otp_version: [26, 27, 28]
1515
os: [ubuntu-latest, windows-latest]
1616
steps:
17-
- name: CHECKOUT
17+
- name: Checkout
1818
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1
19-
- name: CONFIGURE ERLANG
19+
- name: Configure Erlang
2020
# Pin setup-beam to a version that works with Windows (not released at
2121
# the time of commit).
2222
uses: erlef/setup-beam@566deebc640988a494af16ecdf6f820fe0d3fea4
2323
with:
2424
otp-version: ${{ matrix.otp_version }}
2525
rebar3-version: '3.25.1'
26-
- name: XREF
26+
- name: Update Hex registry
27+
run: rebar3 update
28+
- name: Xref
2729
if: ${{ matrix.os == 'ubuntu-latest'}}
2830
run: rebar3 xref
29-
- name: DIALYZE
31+
- name: Dialyze
3032
if: ${{ matrix.otp_version == 28 && matrix.os == 'ubuntu-latest'}}
3133
run: rebar3 dialyzer
32-
- name: BUILD
34+
- name: Build
3335
run: rebar3 compile
34-
- name: EUNIT
36+
- name: EUnit
3537
run: rebar3 eunit
36-
- name: COMMON TEST
38+
- name: Common test
3739
run: rebar3 ct
38-
- name: CAPTURE TEST LOGS ON FAILURE
40+
- name: Capture test logs on failure
3941
uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
4042
if: failure()
4143
with:

rebar.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{deps, [
2-
{gen_batch_server, "0.8.9"},
2+
{gen_batch_server, "0.9.1"},
33
{aten, "0.6.0"},
44
{seshat, "1.0.1"}
55
]}.

rebar.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{"1.2.0",
22
[{<<"aten">>,{pkg,<<"aten">>,<<"0.6.0">>},0},
3-
{<<"gen_batch_server">>,{pkg,<<"gen_batch_server">>,<<"0.8.9">>},0},
3+
{<<"gen_batch_server">>,{pkg,<<"gen_batch_server">>,<<"0.9.1">>},0},
44
{<<"seshat">>,{pkg,<<"seshat">>,<<"1.0.1">>},0}]}.
55
[
66
{pkg_hash,[
77
{<<"aten">>, <<"7A57B275A6DAF515AC3683FB9853E280B4D0DCDD74292FD66AC4A01C8694F8C7">>},
8-
{<<"gen_batch_server">>, <<"1C6BC0F530BF8C17E8B4ACC20C2CC369FFA5BEE2B46DE01E21410745F24B1BC9">>},
8+
{<<"gen_batch_server">>, <<"B3DDAFA34861DA6F6B2369E42A20B7C51884C9C678C72AEB934264452B2AAB34">>},
99
{<<"seshat">>, <<"FA7A8E89218D19394F7DDC47BA6725471103D654CD0BD0A98E5FDD922A943EAC">>}]},
1010
{pkg_hash_ext,[
1111
{<<"aten">>, <<"5F39A164206AE3F211EF5880B1F7819415686436E3229D30B6A058564FBAA168">>},
12-
{<<"gen_batch_server">>, <<"C8581FE4A4B6BCCF91E53CE6A8C7E6C27C8C591BAB5408B160166463F5579C22">>},
12+
{<<"gen_batch_server">>, <<"2118E5E6B1CD58768EC3426763CBB18C918A4E649B38B301BF21BD7275FD6182">>},
1313
{<<"seshat">>, <<"38324FE8C5782C69D73B334DD00B20E16C0D99EEF3E7B4005C519FE9BC0E34FC">>}]}
1414
].

test/ra_log_2_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2461,7 +2461,7 @@ dual_flush_does_not_delete_needed_segments(Config) ->
24612461
%% with the segments from the first flush. ra_log:init must not delete
24622462
%% segment files that the reader still references after compact_segrefs
24632463
%% truncates their ranges.
2464-
UId = ?config(uid, Config),
2464+
_UId = ?config(uid, Config),
24652465
WalDir = ?config(work_dir, Config),
24662466
WalDataDir = filename:join(WalDir, atom_to_list(node())),
24672467

test/ra_log_wal_SUITE.erl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1713,7 +1713,7 @@ recover_multi_wal_with_concurrent_deletes(Config) ->
17131713
ok = logger:set_primary_config(level, all),
17141714
Conf = ?config(wal_conf, Config),
17151715
{UId, _} = WriterId = ?config(writer_id, Config),
1716-
Names = ?config(names, Config),
1716+
_Names = ?config(names, Config),
17171717
Data = <<42:256/unit:8>>,
17181718
meck:new(ra_log_segment_writer, [passthrough]),
17191719
meck:expect(ra_log_segment_writer, await, fun(_) -> ok end),

0 commit comments

Comments
 (0)