-
-
Notifications
You must be signed in to change notification settings - Fork 1.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Testcontainers build fails - MySQL, DB2, ... impacted by removal of TLS<1.2 in [email protected]
#4058
Comments
Almost certainly due to this: https://bugs.openjdk.java.net/browse/JDK-8202343 |
Fixes #4058 Latest versions of JDKs (including `[email protected]`) have disabled TLS1.0 and 1.1, which means that these JDKs can no longer use particularly old versions of the MySQL docker images. This PR makes Testcontainers' own tests use the most up-to-date images available (for each version of MySQL in use). The PR also updates the 'default' MySQL tag, since the previous version can no longer be used reliably.
SSLHandshakeException
with [email protected]
[email protected]
Reopening, as I've found the same problem with DB2. If we have the same problem with any other containers I'll update this ticket. |
Looks like DB2 is going to be a pain, as out of the box it will need extra configuration operations to turn on TLS1.2:
|
It seems that some of our tests are now failing on CI, and I've correlated this to
[email protected]
JDK. Note that this is not a problem when using[email protected]
, so it seems that a deprecation might be triggering thisTo reproduce, change JDK versions as above and run:
The text was updated successfully, but these errors were encountered: