ammar-master commented on code in PR #24919: URL: https://github.com/apache/flink/pull/24919#discussion_r1634154163
########## flink-runtime/src/test/java/org/apache/flink/runtime/net/SSLUtilsTest.java: ########## @@ -148,6 +148,17 @@ void testRESTClientSSLWrongPassword(String sslProvider) { .isInstanceOf(Exception.class); } + /** Tests that REST Client SSL Engine creation fails with bad SSL configuration. */ + @ParameterizedTest + @MethodSource("parameters") + void testRESTClientSSLBadTruststoreType(String sslProvider) { + Configuration clientConfig = createRestSslConfigWithTrustStore(sslProvider); + clientConfig.set(SecurityOptions.SSL_REST_TRUSTSTORE_TYPE, "BKS"); Review Comment: Changed the tests -- 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