Skip to content

Commit 314d4e2

Browse files
committed
Unskip mixed version tests
As described in the 4.0 release notes: > RabbitMQ Shovels will be able connect to a RabbitMQ 4.0 node via AMQP 1.0 only when the Shovel runs on a RabbitMQ node >= 3.13.7.
1 parent 3a1485d commit 314d4e2

File tree

1 file changed

+2
-14
lines changed

1 file changed

+2
-14
lines changed

deps/rabbitmq_shovel/test/amqp10_inter_cluster_SUITE.erl

Lines changed: 2 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -72,25 +72,13 @@ end_per_testcase(Testcase, Config) ->
7272
rabbit_ct_helpers:testcase_finished(Config, Testcase).
7373

7474
old_to_new_on_old(Config) ->
75-
case rabbit_ct_helpers:is_mixed_versions() of
76-
true ->
77-
{skip, "TODO: Unskip when lower version is >= 3.13.7 "
78-
"because AMQP 1.0 client must use SASL when connecting to 4.0"};
79-
false ->
80-
ok = shovel(?OLD, ?NEW, ?OLD, Config)
81-
end.
75+
ok = shovel(?OLD, ?NEW, ?OLD, Config).
8276

8377
old_to_new_on_new(Config) ->
8478
ok = shovel(?OLD, ?NEW, ?NEW, Config).
8579

8680
new_to_old_on_old(Config) ->
87-
case rabbit_ct_helpers:is_mixed_versions() of
88-
true ->
89-
{skip, "TODO: Unskip when lower version is >= 3.13.7 "
90-
"because AMQP 1.0 client must use SASL when connecting to 4.0"};
91-
false ->
92-
ok = shovel(?NEW, ?OLD, ?OLD, Config)
93-
end.
81+
ok = shovel(?NEW, ?OLD, ?OLD, Config).
9482

9583
new_to_old_on_new(Config) ->
9684
ok = shovel(?NEW, ?OLD, ?NEW, Config).

0 commit comments

Comments
 (0)