Skip to content

Commit a595128

Browse files
committed
peer_discovery_classic_config_SUITE: Increase timetrap for successful_discovery_with_a_subset_of_nodes_coming_online
[Why] Now that feature flags compatibility is tested first, before Mnesia-specific checks, when a peer is not started yet, the feature flags check lasts the entire timeout, so one minute. This retry mechanism was added to feature flags in #8411. Thus, instead of 20 seconds, the testcase takes 10 minutes now (10 retries of one minute each).
1 parent 55cf220 commit a595128

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

deps/rabbit/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -553,7 +553,7 @@ rabbitmq_suite(
553553

554554
rabbitmq_integration_suite(
555555
name = "peer_discovery_classic_config_SUITE",
556-
size = "medium",
556+
size = "large",
557557
flaky = True,
558558
)
559559

deps/rabbit/test/peer_discovery_classic_config_SUITE.erl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,9 @@ successful_discovery(Config) ->
147147
cluster_members_online(Config, 1)},
148148
?TIMEOUT).
149149

150+
successful_discovery_with_a_subset_of_nodes_coming_online() ->
151+
[{timetrap, {minutes, 15}}].
152+
150153
successful_discovery_with_a_subset_of_nodes_coming_online(Config) ->
151154
?awaitMatch(
152155
{M1, M2} when length(M1) =:= 2; length(M2) =:= 2,

0 commit comments

Comments
 (0)