Skip to content

Commit 20da68b

Browse files
committed
Add debug message for quorum_queue_SUITE
1 parent eb4b826 commit 20da68b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

deps/rabbit/test/quorum_queue_SUITE.erl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1462,18 +1462,21 @@ force_checkpoint_on_queue(Config) ->
14621462
fun() ->
14631463
{ok, State, _} = rpc:call(Server0, ra, member_overview, [{RaName, Server0}]),
14641464
#{log := #{latest_checkpoint_index := LCI}} = State,
1465+
logger:alert("LCI = ~0p on server 0", [LCI]),
14651466
LCI =:= undefined
14661467
end),
14671468
rabbit_ct_helpers:await_condition(
14681469
fun() ->
14691470
{ok, State, _} = rpc:call(Server1, ra, member_overview, [{RaName, Server1}]),
14701471
#{log := #{latest_checkpoint_index := LCI}} = State,
1472+
logger:alert("LCI = ~0p on server 1", [LCI]),
14711473
LCI =:= undefined
14721474
end),
14731475
rabbit_ct_helpers:await_condition(
14741476
fun() ->
14751477
{ok, State, _} = rpc:call(Server2, ra, member_overview, [{RaName, Server2}]),
14761478
#{log := #{latest_checkpoint_index := LCI}} = State,
1479+
logger:alert("LCI = ~0p on server 2", [LCI]),
14771480
LCI =:= undefined
14781481
end),
14791482

0 commit comments

Comments
 (0)