Skip to content

Commit cbb23d6

Browse files
Merge pull request #13648 from rabbitmq/fix-flake-in-rabbit-fifo-int-SUITE
Fix flake(s) in rabbit_fifo_int_SUITE
2 parents 27be6c3 + e71fa51 commit cbb23d6

File tree

2 files changed

+18
-12
lines changed

2 files changed

+18
-12
lines changed

deps/rabbit/test/amqpl_consumer_ack_SUITE.erl

+7-4
Original file line numberDiff line numberDiff line change
@@ -167,8 +167,9 @@ requeue_two_channels(QType, Config) ->
167167
QName = atom_to_binary(?FUNCTION_NAME),
168168
Ctag1 = <<"consumter tag 1">>,
169169
Ctag2 = <<"consumter tag 2">>,
170-
Ch1 = rabbit_ct_client_helpers:open_channel(Config),
171-
Ch2 = rabbit_ct_client_helpers:open_channel(Config),
170+
Conn = rabbit_ct_client_helpers:open_unmanaged_connection(Config, 0),
171+
{ok, Ch1} = amqp_connection:open_channel(Conn),
172+
{ok, Ch2} = amqp_connection:open_channel(Conn),
172173

173174
#'queue.declare_ok'{} = amqp_channel:call(
174175
Ch1,
@@ -225,7 +226,7 @@ requeue_two_channels(QType, Config) ->
225226
assert_messages(QName, 4, 4, Config),
226227

227228
%% Closing Ch1 should cause both messages to be requeued and delivered to the Ch2.
228-
ok = rabbit_ct_client_helpers:close_channel(Ch1),
229+
ok = amqp_channel:close(Ch1),
229230

230231
receive {#'basic.deliver'{consumer_tag = C5},
231232
#amqp_msg{payload = <<"1">>}} ->
@@ -247,7 +248,9 @@ requeue_two_channels(QType, Config) ->
247248
assert_messages(QName, 0, 0, Config),
248249

249250
?assertMatch(#'queue.delete_ok'{},
250-
amqp_channel:call(Ch2, #'queue.delete'{queue = QName})).
251+
amqp_channel:call(Ch2, #'queue.delete'{queue = QName})),
252+
amqp_connection:close(Conn),
253+
ok.
251254

252255
assert_messages(QNameBin, NumTotalMsgs, NumUnackedMsgs, Config) ->
253256
Vhost = ?config(rmq_vhost, Config),

deps/rabbit/test/rabbit_fifo_int_SUITE.erl

+11-8
Original file line numberDiff line numberDiff line change
@@ -942,14 +942,17 @@ discard_next_delivery(ClusterName, State0, Wait) ->
942942
end.
943943

944944
start_cluster(ClusterName, ServerIds, RaFifoConfig) ->
945-
UId = ra:new_uid(ra_lib:to_binary(ClusterName#resource.name)),
946-
Confs = [#{id => Id,
947-
uid => UId,
948-
cluster_name => ClusterName#resource.name,
949-
log_init_args => #{uid => UId},
950-
initial_members => ServerIds,
951-
initial_machine_version => rabbit_fifo:version(),
952-
machine => {module, rabbit_fifo, RaFifoConfig}}
945+
NameBin = ra_lib:to_binary(ClusterName#resource.name),
946+
Confs = [begin
947+
UId = ra:new_uid(NameBin),
948+
#{id => Id,
949+
uid => UId,
950+
cluster_name => ClusterName#resource.name,
951+
log_init_args => #{uid => UId},
952+
initial_members => ServerIds,
953+
initial_machine_version => rabbit_fifo:version(),
954+
machine => {module, rabbit_fifo, RaFifoConfig}}
955+
end
953956
|| Id <- ServerIds],
954957
{ok, Started, _} = ra:start_cluster(?RA_SYSTEM, Confs),
955958
?assertEqual(length(Started), length(ServerIds)),

0 commit comments

Comments
 (0)