This is an automated email from the ASF dual-hosted git repository.

gaborgsomogyi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/flink.git


The following commit(s) were added to refs/heads/master by this push:
     new 1a409716fec  [FLINK-38986][runtime][test] Update further tests with 
modern cipher suite
1a409716fec is described below

commit 1a409716feca11b7d0ddd9486fbdefe807343fea
Author: balassai <[email protected]>
AuthorDate: Wed Feb 4 08:34:39 2026 +0100

     [FLINK-38986][runtime][test] Update further tests with modern cipher suite
---
 .../java/org/apache/flink/runtime/rest/RestServerEndpointITCase.java   | 3 +++
 .../src/test/java/org/apache/flink/table/client/SqlClientSSLTest.java  | 3 +++
 2 files changed, 6 insertions(+)

diff --git 
a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestServerEndpointITCase.java
 
b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestServerEndpointITCase.java
index 1f4ef1971eb..a7b0917903d 100644
--- 
a/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestServerEndpointITCase.java
+++ 
b/flink-runtime/src/test/java/org/apache/flink/runtime/rest/RestServerEndpointITCase.java
@@ -154,6 +154,9 @@ public class RestServerEndpointITCase {
 
         final Configuration sslConfig = new Configuration(config);
         sslConfig.set(SecurityOptions.SSL_REST_ENABLED, true);
+        sslConfig.set(
+                SecurityOptions.SSL_ALGORITHMS,
+                
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384");
         sslConfig.set(SecurityOptions.SSL_REST_TRUSTSTORE, truststorePath);
         sslConfig.set(SecurityOptions.SSL_REST_TRUSTSTORE_PASSWORD, 
"password");
         sslConfig.set(SecurityOptions.SSL_REST_KEYSTORE, keystorePath);
diff --git 
a/flink-table/flink-sql-client/src/test/java/org/apache/flink/table/client/SqlClientSSLTest.java
 
b/flink-table/flink-sql-client/src/test/java/org/apache/flink/table/client/SqlClientSSLTest.java
index 627361edaf9..4b44f055362 100644
--- 
a/flink-table/flink-sql-client/src/test/java/org/apache/flink/table/client/SqlClientSSLTest.java
+++ 
b/flink-table/flink-sql-client/src/test/java/org/apache/flink/table/client/SqlClientSSLTest.java
@@ -76,6 +76,9 @@ class SqlClientSSLTest extends SqlClientTestBase {
 
     private static void withSSL(Configuration configuration) {
         configuration.set(SecurityOptions.SSL_REST_ENABLED, true);
+        configuration.set(
+                SecurityOptions.SSL_ALGORITHMS,
+                
"TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384");
         configuration.set(SecurityOptions.SSL_REST_TRUSTSTORE, truststorePath);
         configuration.set(SecurityOptions.SSL_REST_TRUSTSTORE_PASSWORD, 
"password");
         configuration.set(SecurityOptions.SSL_REST_KEYSTORE, keystorePath);

Reply via email to