Skip to content

Commit

Permalink
Merge pull request #308 from rhusar/downgrade-s3mock-container
Browse files Browse the repository at this point in the history
Fix failing MockS3_PINGDiscoveryTestCase.
  • Loading branch information
rhusar authored Jan 2, 2024
2 parents 50896ef + 6c2070c commit 20aa68c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ public class MockS3_PINGDiscoveryTestCase extends AbstractS3_PINGDiscoveryTestCa
public static void setUp() {
Assume.assumeTrue("Docker environment is not available - skipping tests against S3 mock service.", isDockerAvailable());

s3Mock = new S3MockContainer("latest");
// TODO Since 3.3.0 the obscure cluster name tests start to fail. Manage the version manually and keep on '3.2.0' for now.
s3Mock = new S3MockContainer("3.2.0");
s3Mock.start();

// TODO workaround using S3MockContainer#getHttpEndpoint() by an IP address so it doesn't rely on spoofing DNS records
Expand Down

0 comments on commit 20aa68c

Please sign in to comment.