summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2020-04-01 14:17:53 +0300
committerMichael Klishin <michael@clojurewerkz.org>2020-04-01 14:17:53 +0300
commit52e70be3c4e9dc79002857ed868f75caf7a829f1 (patch)
tree0c3b08f6421555987a8c9de534471dc6ba13106d
parent429fdb272eb4ce6f64017dbb56208ea24130f6b2 (diff)
downloadrabbitmq-server-git-52e70be3c4e9dc79002857ed868f75caf7a829f1.tar.gz
Await cluster formation for 40s
10s is not enough for CI.
-rw-r--r--test/peer_discovery_classic_config_SUITE.erl6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/peer_discovery_classic_config_SUITE.erl b/test/peer_discovery_classic_config_SUITE.erl
index 40c516d20b..148a2899ae 100644
--- a/test/peer_discovery_classic_config_SUITE.erl
+++ b/test/peer_discovery_classic_config_SUITE.erl
@@ -151,16 +151,16 @@ successful_discovery(Config) ->
3 =:= length(cluster_members_online(Config, 0)) andalso
3 =:= length(cluster_members_online(Config, 1))
end,
- rabbit_ct_helpers:await_condition(Condition, 10000).
+ rabbit_ct_helpers:await_condition(Condition, 40000).
successful_discovery_with_a_subset_of_nodes_coming_online(Config) ->
Condition = fun() ->
2 =:= length(cluster_members_online(Config, 0)) andalso
2 =:= length(cluster_members_online(Config, 1))
end,
- rabbit_ct_helpers:await_condition(Condition, 10000).
+ rabbit_ct_helpers:await_condition(Condition, 40000).
no_nodes_configured(Config) ->
Condition = fun() -> length(cluster_members_online(Config, 0)) < 2 end,
- rabbit_ct_helpers:await_condition(Condition, 7000).
+ rabbit_ct_helpers:await_condition(Condition, 10000).