summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2020-04-01 14:24:06 +0300
committerMichael Klishin <michael@clojurewerkz.org>2020-04-01 14:24:06 +0300
commit639164227433461219f79388d7b44ea368806820 (patch)
treeb622ab884fb1622afba2ce298d6cd24122b327bf /test
parent52e70be3c4e9dc79002857ed868f75caf7a829f1 (diff)
downloadrabbitmq-server-git-639164227433461219f79388d7b44ea368806820.tar.gz
Wait for up to 90s in this test
Diffstat (limited to 'test')
-rw-r--r--test/peer_discovery_classic_config_SUITE.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/peer_discovery_classic_config_SUITE.erl b/test/peer_discovery_classic_config_SUITE.erl
index 148a2899ae..87bc556e6b 100644
--- a/test/peer_discovery_classic_config_SUITE.erl
+++ b/test/peer_discovery_classic_config_SUITE.erl
@@ -151,14 +151,14 @@ 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, 40000).
+ rabbit_ct_helpers:await_condition(Condition, 90000).
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, 40000).
+ rabbit_ct_helpers:await_condition(Condition, 90000).
no_nodes_configured(Config) ->
Condition = fun() -> length(cluster_members_online(Config, 0)) < 2 end,