Skip to content

Commit

Permalink
revert changes to fix BeekeeperExpiredMetadataSchedulerApiaryIntegrat…
Browse files Browse the repository at this point in the history
…ionTest
  • Loading branch information
Hamza Jugon committed Nov 21, 2024
1 parent c1a7c96 commit 90c2871
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,13 @@
public class ContainerTestUtils {

public static MySQLContainer mySqlContainer() {
MySQLContainer container = new MySQLContainer("mysql:8.0.40").withDatabaseName("beekeeper");
MySQLContainer container = new MySQLContainer("mysql:8.0.26").withDatabaseName("beekeeper");
container.withCommand("--default-authentication-plugin=mysql_native_password");
return container;
}

public static LocalStackContainer awsContainer(LocalStackContainer.Service service) {
return new LocalStackContainer("0.13.1").withServices(service);
return new LocalStackContainer().withServices(service);
}

public static String awsServiceEndpoint(LocalStackContainer awsContainer, LocalStackContainer.Service service) {
Expand Down

0 comments on commit 90c2871

Please sign in to comment.