This is an automated email from the ASF dual-hosted git repository.
remm pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new 9123ba0f87 Ignore error calling SSL_CTX_set_ciphersuites for GH CI
(2nd attempt)
9123ba0f87 is described below
commit 9123ba0f87930cb48b61b872909b5197c760e006
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]