brusdev commented on a change in pull request #2990: ARTEMIS-2627
simpleSecureServer failing on IBM JDK 8
URL: https://github.com/apache/activemq-artemis/pull/2990#discussion_r382910252
##########
File path:
artemis-web/src/main/java/org/apache/activemq/artemis/component/WebServerComponent.java
##########
@@ -72,6 +74,11 @@ public void configure(ComponentDTO config, String
artemisInstance, String artemi
SslContextFactory.Server sslFactory = new SslContextFactory.Server();
sslFactory.setKeyStorePath(webServerConfig.keyStorePath == null ?
artemisInstance + "/etc/keystore.jks" : webServerConfig.keyStorePath);
sslFactory.setKeyStorePassword(webServerConfig.getKeyStorePassword()
== null ? "password" : webServerConfig.getKeyStorePassword());
+ sslFactory.setIncludeProtocols("TLSv1.2");
Review comment:
I added some parameters to the WebServerDTO so the test can configure them.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services