We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7cd144d commit c726525Copy full SHA for c726525
sdks/java/io/jdbc/src/test/java/org/apache/beam/sdk/io/jdbc/JdbcIOAutoPartitioningIT.java
@@ -125,7 +125,10 @@ public void evaluate() throws Throwable {
125
}
126
};
127
128
- @ClassRule public static JdbcDatabaseContainer<?> mysql = new MySQLContainer<>("mysql");
+ // TODO(yathu) unpin tag when the fix of
129
+ // https://github.com/testcontainers/testcontainers-java/issues/8130
130
+ // released and upgraded in Beam
131
+ @ClassRule public static JdbcDatabaseContainer<?> mysql = new MySQLContainer<>("mysql:8.2");
132
133
@ClassRule
134
public static JdbcDatabaseContainer<?> postgres = new PostgreSQLContainer<>("postgres");
0 commit comments