Skip to content

Commit

Permalink
Fix JdbcIO PreCommit mysql breaking change (#30221)
Browse files Browse the repository at this point in the history
Co-authored-by: Yi Hu <[email protected]>
  • Loading branch information
lostluck and Abacn authored Feb 6, 2024
1 parent 7cd144d commit c726525
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,10 @@ public void evaluate() throws Throwable {
}
};

@ClassRule public static JdbcDatabaseContainer<?> mysql = new MySQLContainer<>("mysql");
// TODO(yathu) unpin tag when the fix of
// https://github.com/testcontainers/testcontainers-java/issues/8130
// released and upgraded in Beam
@ClassRule public static JdbcDatabaseContainer<?> mysql = new MySQLContainer<>("mysql:8.2");

@ClassRule
public static JdbcDatabaseContainer<?> postgres = new PostgreSQLContainer<>("postgres");
Expand Down

0 comments on commit c726525

Please sign in to comment.