pnowojski commented on a change in pull request #7688: [FLINK-9816][network]
add option to configure SSL engine provider for TM communication
URL: https://github.com/apache/flink/pull/7688#discussion_r280775627
##########
File path:
flink-runtime/src/test/java/org/apache/flink/runtime/net/SSLUtilsTest.java
##########
@@ -52,6 +60,23 @@
private static final String KEY_STORE_PASSWORD = "password";
private static final String KEY_PASSWORD = "password";
+ public static final List<String> AVAILABLE_SSL_PROVIDERS;
+ static {
+ if (OpenSsl.isAvailable()) {
+ AVAILABLE_SSL_PROVIDERS = Arrays.asList("JDK",
"OPENSSL");
Review comment:
Do we test for this somehow on travis? Manually? Is there some kind of
instruction how to make `OpenSsl` available during testing?
----------------------------------------------------------------
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