This is an automated email from the ASF dual-hosted git repository.

jlmonteiro pushed a commit to branch jakartaee9-tck
in repository https://gitbox.apache.org/repos/asf/tomee-tck.git


The following commit(s) were added to refs/heads/jakartaee9-tck by this push:
     new 437dd8c  Set protocols="TLSv1.2" to disable TLSv1.3 since the TCK 
requires post-handshake authentication and the Java 11 client does not support 
that.
437dd8c is described below

commit 437dd8c54b6df8f37f5079a1846557ae627b71d1
Author: Jean-Louis Monteiro <[email protected]>
AuthorDate: Wed Sep 21 09:24:44 2022 +0200

    Set protocols="TLSv1.2" to disable TLSv1.3 since the TCK requires 
post-handshake authentication and the Java 11 client does not support that.
---
 src/test/tomee-plume/conf/server.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/test/tomee-plume/conf/server.xml 
b/src/test/tomee-plume/conf/server.xml
index 5dd67c5..a37c645 100644
--- a/src/test/tomee-plume/conf/server.xml
+++ b/src/test/tomee-plume/conf/server.xml
@@ -87,7 +87,7 @@
          connector should be using the OpenSSL style configuration
          described in the APR documentation -->
     <Connector port="%webcontainer.default.ssl.port%" protocol="HTTP/1.1" 
SSLEnabled="true">
-      <SSLHostConfig truststoreFile="conf/ssl-truststore">
+      <SSLHostConfig protocols="TLSv1.2" truststoreFile="conf/ssl-truststore">
         <Certificate certificateKeystoreFile="conf/clientcert.jks"
                      certificateKeystorePassword="changeit"
                      type="RSA" />

Reply via email to