File tree Expand file tree Collapse file tree
flink-runtime/src/test/java/org/apache/flink/runtime/rest
flink-table/flink-sql-client/src/test/java/org/apache/flink/table/client Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -154,6 +154,9 @@ public static Collection<Object[]> data() throws Exception {
154154
155155 final Configuration sslConfig = new Configuration (config );
156156 sslConfig .set (SecurityOptions .SSL_REST_ENABLED , true );
157+ sslConfig .set (
158+ SecurityOptions .SSL_ALGORITHMS ,
159+ "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384" );
157160 sslConfig .set (SecurityOptions .SSL_REST_TRUSTSTORE , truststorePath );
158161 sslConfig .set (SecurityOptions .SSL_REST_TRUSTSTORE_PASSWORD , "password" );
159162 sslConfig .set (SecurityOptions .SSL_REST_KEYSTORE , keystorePath );
Original file line number Diff line number Diff line change @@ -76,6 +76,9 @@ void testGatewayMode() throws Exception {
7676
7777 private static void withSSL (Configuration configuration ) {
7878 configuration .set (SecurityOptions .SSL_REST_ENABLED , true );
79+ configuration .set (
80+ SecurityOptions .SSL_ALGORITHMS ,
81+ "TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384" );
7982 configuration .set (SecurityOptions .SSL_REST_TRUSTSTORE , truststorePath );
8083 configuration .set (SecurityOptions .SSL_REST_TRUSTSTORE_PASSWORD , "password" );
8184 configuration .set (SecurityOptions .SSL_REST_KEYSTORE , keystorePath );
You can’t perform that action at this time.
0 commit comments