summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorkjnilsson <knilsson@pivotal.io>2020-09-21 16:59:27 +0100
committerkjnilsson <knilsson@pivotal.io>2020-09-21 16:59:27 +0100
commit88c3e89fc1bf7d437cd60d469537a5c3b495a456 (patch)
tree9d524d5829034839c3fe3249c44f1131fd58779d /test
parentf95bb4a4b1468a05c69202a2e0e03d063bc248de (diff)
downloadrabbitmq-server-git-88c3e89fc1bf7d437cd60d469537a5c3b495a456.tar.gz
Skip another mixed versions test
as it cannot be made reliable.
Diffstat (limited to 'test')
-rw-r--r--test/quorum_queue_SUITE.erl9
1 files changed, 9 insertions, 0 deletions
diff --git a/test/quorum_queue_SUITE.erl b/test/quorum_queue_SUITE.erl
index cc9a8e154c..15f3558046 100644
--- a/test/quorum_queue_SUITE.erl
+++ b/test/quorum_queue_SUITE.erl
@@ -1207,7 +1207,16 @@ metrics_cleanup_on_leader_crash(Config) ->
end),
ok.
+
delete_declare(Config) ->
+ case is_mixed_versions() of
+ true ->
+ {skip, "delete_declare isn't mixed version reliable"};
+ false ->
+ delete_declare0(Config)
+ end.
+
+delete_declare0(Config) ->
%% Delete cluster in ra is asynchronous, we have to ensure that we handle that in rmq
[Server | _] = Servers = rabbit_ct_broker_helpers:get_node_configs(Config,
nodename),