File tree Expand file tree Collapse file tree 4 files changed +4
-8
lines changed
java/integration/container/tests Expand file tree Collapse file tree 4 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ dependencies {
2222 jmhImplementation(project(" :aws-advanced-jdbc-wrapper" ))
2323 implementation(" org.postgresql:postgresql:42.7.7" )
2424 implementation(" com.mysql:mysql-connector-j:9.3.0" )
25- implementation(" org.mariadb.jdbc:mariadb-java-client:3.5.3 " )
25+ implementation(" org.mariadb.jdbc:mariadb-java-client:3.5.6 " )
2626 implementation(" com.zaxxer:HikariCP:4.0.3" )
2727 implementation(" org.checkerframework:checker-qual:3.49.5" )
2828
Original file line number Diff line number Diff line change @@ -53,7 +53,7 @@ dependencies {
5353 compileOnly(" org.checkerframework:checker-qual:3.49.5" )
5454 compileOnly(" com.mysql:mysql-connector-j:9.3.0" )
5555 compileOnly(" org.postgresql:postgresql:42.7.7" )
56- compileOnly(" org.mariadb.jdbc:mariadb-java-client:3.5.3 " )
56+ compileOnly(" org.mariadb.jdbc:mariadb-java-client:3.5.6 " )
5757 compileOnly(" org.osgi:org.osgi.core:6.0.0" )
5858 compileOnly(" org.jetbrains.kotlin:kotlin-stdlib:2.1.21" )
5959
@@ -75,7 +75,7 @@ dependencies {
7575 testImplementation(" org.apache.commons:commons-dbcp2:2.13.0" )
7676 testImplementation(" org.postgresql:postgresql:42.7.7" )
7777 testImplementation(" com.mysql:mysql-connector-j:9.3.0" )
78- testImplementation(" org.mariadb.jdbc:mariadb-java-client:3.5.3 " )
78+ testImplementation(" org.mariadb.jdbc:mariadb-java-client:3.5.6 " )
7979 testImplementation(" com.zaxxer:HikariCP:4.0.3" ) // Version 4.+ is compatible with Java 8
8080 testImplementation(" com.mchange:c3p0:0.11.0" )
8181 testImplementation(" org.springframework.boot:spring-boot-starter-jdbc:2.7.13" ) // 2.7.13 is the last version compatible with Java 8
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ dependencies {
3737 testImplementation(" org.apache.commons:commons-dbcp2:2.12.0" )
3838 testImplementation(" org.postgresql:postgresql:42.7.4" )
3939 testImplementation(" com.mysql:mysql-connector-j:9.1.0" )
40- testImplementation(" org.mariadb.jdbc:mariadb-java-client:3.4.1 " )
40+ testImplementation(" org.mariadb.jdbc:mariadb-java-client:3.5.6 " )
4141 testImplementation(" com.zaxxer:HikariCP:4.0.3" ) // Version 4.+ is compatible with Java 8
4242 testImplementation(" org.springframework.boot:spring-boot-starter-jdbc:2.7.13" ) // 2.7.13 is the last version compatible with Java 8
4343 testImplementation(" org.mockito:mockito-inline:4.11.0" ) // 4.11.0 is the last version compatible with Java 8
Original file line number Diff line number Diff line change 2323import integration .DatabaseEngineDeployment ;
2424import integration .TestEnvironmentFeatures ;
2525import integration .container .ConnectionStringHelper ;
26- import integration .container .TestDriver ;
2726import integration .container .TestDriverProvider ;
2827import integration .container .TestEnvironment ;
29- import integration .container .condition .DisableOnTestDriver ;
3028import integration .container .condition .DisableOnTestFeature ;
3129import integration .container .condition .EnableOnDatabaseEngineDeployment ;
3230import integration .container .condition .EnableOnTestFeature ;
@@ -90,8 +88,6 @@ public void afterEach() {
9088
9189 @ TestTemplate
9290 @ ExtendWith (TestDriverProvider .class )
93- // TODO: test fails because EFM monitor's isValid call is freezing for MARIADB, investigate why
94- @ DisableOnTestDriver (TestDriver .MARIADB )
9591 @ EnableOnTestFeature (TestEnvironmentFeatures .NETWORK_OUTAGES_ENABLED )
9692 public void test_efmNetworkFailureDetection () throws SQLException {
9793 int failureDelayMs = 10000 ;
You can’t perform that action at this time.
0 commit comments