This is an automated email from the ASF dual-hosted git repository. remm pushed a commit to branch 9.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
commit b4069826121023209a72a9f1cdc3590b77f3a7fd Author: remm <[email protected]> AuthorDate: Mon Jan 5 13:46:53 2026 +0100 Ignore error calling SSL_CTX_set_ciphersuites for GH CI (2nd attempt) --- java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java b/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java index 3aa0f479e6..56bf0989d5 100644 --- a/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java +++ b/java/org/apache/tomcat/util/net/openssl/panama/OpenSSLContext.java @@ -520,7 +520,7 @@ public class OpenSSLContext implements org.apache.tomcat.util.net.SSLContext { } else { ciphersSet = true; } - } catch (NoClassDefFoundError e) { + } catch (NoClassDefFoundError | UnsatisfiedLinkError e) { // Ignore unavailable TLS 1.3 call, which might be compiled out sometimes on LibreSSL tls13Warning = sm.getString("engine.failedCipherSuite", sslHostConfig.getCiphers()); } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
