Skip to content

Commit 9e2a3bc

Browse files
authored
Merge pull request #4402 from rabbitmq/maybe-reduce-peer-discovery-aws-flakes
Attempt to reduce flakes in aws integration tests
2 parents af048d4 + 23226ad commit 9e2a3bc

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

deps/rabbitmq_peer_discovery_aws/test/aws_ecs_util.erl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,7 @@ ecs_up(Config) ->
169169
ProfileName = ?config(ecs_profile_name, Config),
170170
ClusterSize = ?config(ecs_cluster_size, Config),
171171
UpCmd = [EcsCliCmd, "up",
172+
"--force",
172173
"--instance-role", InstanceRole,
173174
"--size", integer_to_list(ClusterSize),
174175
"--instance-type", "t2.medium",

deps/rabbitmq_peer_discovery_aws/test/integration_SUITE.erl

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,9 @@ groups() ->
4444
init_per_suite(Config) ->
4545
case rabbit_ct_helpers:is_mixed_versions() of
4646
true ->
47-
%% These test would like passed in mixed versions, but they won't
48-
%% actually honor mixed versions as currently specified via env var
47+
%% These test would likely pass in mixed versions, but they won't
48+
%% actually honor mixed versions like the other suites, as these
49+
%% tests are docker image based
4950
{skip, "not mixed versions compatible"};
5051
_ ->
5152
inets:start(),

0 commit comments

Comments
 (0)