File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/ssl Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -501,7 +501,8 @@ private SSLContextHolder createSslContext(
501501 sslContext .init (new X509ExtendedKeyManager [] { keyManager }, new X509ExtendedTrustManager [] { trustManager }, null );
502502
503503 // check the supported ciphers and log them here to prevent spamming logs on every call
504- supportedCiphers (sslContext .getSupportedSSLParameters ().getCipherSuites (), sslConfiguration .getCipherSuites (), true );
504+ // FIXME error log for unsupported ciphers on JDK 24 breaks packaging tests (see ES-10984)
505+ supportedCiphers (sslContext .getSupportedSSLParameters ().getCipherSuites (), sslConfiguration .getCipherSuites (), false );
505506
506507 return new SSLContextHolder (sslContext , sslConfiguration );
507508 } catch (NoSuchAlgorithmException | KeyManagementException e ) {
You can’t perform that action at this time.
0 commit comments