ammar-master commented on code in PR #24919: URL: https://github.com/apache/flink/pull/24919#discussion_r1634153986
########## flink-runtime/src/test/java/org/apache/flink/runtime/net/SSLUtilsTest.java: ########## @@ -306,6 +341,19 @@ void testInternalSSLWrongKeyPassword(String sslProvider) { .isInstanceOf(Exception.class); } + @ParameterizedTest + @MethodSource("parameters") + void testInternalSSLWrongKeystoreType(String sslProvider) { + final Configuration config = createInternalSslConfigWithKeyAndTrustStores(sslProvider); + config.set(SecurityOptions.SSL_INTERNAL_KEYSTORE_TYPE, "JCEKS"); + + assertThatThrownBy(() -> SSLUtils.createInternalServerSSLEngineFactory(config)) + .isInstanceOf(java.io.IOException.class); Review Comment: Addressed -- 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. To unsubscribe, e-mail: issues-unsubscr...@flink.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org