summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorGerhard Lazu <gerhard@lazu.co.uk>2020-03-20 16:47:39 +0000
committerJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2020-04-09 15:44:32 +0200
commit12e3ad79eef8c21b39502f3e3ff55f63ea479e21 (patch)
tree19282be36d5db261695f9b8feabf927b67f3df23 /test
parentd8771acee402446071b945c76b9dc737e572b992 (diff)
downloadrabbitmq-server-git-12e3ad79eef8c21b39502f3e3ff55f63ea479e21.tar.gz
Remove calculate_client_local test flake
Gets aborted after 30 minutes: https://github.com/rabbitmq/rabbitmq-server/runs/522332298?check_suite_focus=true#step:4:479 queue_master_location_SUITE > cluster_size_3 > calculate_client_local #1. {skip, {failed, {queue_master_location_SUITE,init_per_testcase, {timetrap_timeout,1800000}}}} - It's not helping anyone in the current state - I don't have enough context to be able to fix it - I need to stay focused on the current task, cannot afford to context switch - Feel free to fix it if it's important, otherwise leave it deleted cc @michaelklishin @dumbbell Signed-off-by: Gerhard Lazu <gerhard@lazu.co.uk>
Diffstat (limited to 'test')
-rw-r--r--test/queue_master_location_SUITE.erl11
1 files changed, 1 insertions, 10 deletions
diff --git a/test/queue_master_location_SUITE.erl b/test/queue_master_location_SUITE.erl
index 694b2e5d11..1049a263c8 100644
--- a/test/queue_master_location_SUITE.erl
+++ b/test/queue_master_location_SUITE.erl
@@ -58,8 +58,7 @@ groups() ->
declare_config,
calculate_min_master,
calculate_min_master_with_bindings,
- calculate_random,
- calculate_client_local
+ calculate_random
]}
].
@@ -249,14 +248,6 @@ calculate_random(Config) ->
verify_random(Config, Q),
ok.
-calculate_client_local(Config) ->
- setup_test_environment(Config),
- QueueName = rabbit_misc:r(<<"/">>, queue, Q = <<"qm.test">>),
- Args = [{<<"x-queue-master-locator">>, longstr, <<"client-local">>}],
- declare(Config, QueueName, false, false, Args, none),
- verify_client_local(Config, Q),
- ok.
-
%%
%% Setup environment
%%