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

yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git


The following commit(s) were added to refs/heads/branch-4.1 by this push:
     new 5f72e27143f branch-4.1: [fix](regression) Align connector TLS 
regression settings #67018 (#67082)
5f72e27143f is described below

commit 5f72e27143f7644cdf6ff815aeb13441be0fda8f
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Wed Aug 26 10:39:31 2026 +0800

    branch-4.1: [fix](regression) Align connector TLS regression settings 
#67018 (#67082)
    
    Cherry-picked from #67018
    
    Co-authored-by: wudi <[email protected]>
---
 regression-test/conf/regression-conf.groovy                         | 2 --
 .../src/main/groovy/org/apache/doris/regression/suite/Suite.groovy  | 6 +-----
 2 files changed, 1 insertion(+), 7 deletions(-)

diff --git a/regression-test/conf/regression-conf.groovy 
b/regression-test/conf/regression-conf.groovy
index 934d5514331..385a523d33c 100644
--- a/regression-test/conf/regression-conf.groovy
+++ b/regression-test/conf/regression-conf.groovy
@@ -301,8 +301,6 @@ icebergS3TablesCatalogGlueRest=""
 // The path of the cert configuration file for the testing framework 
 // is consistent with the path of the cert file for the cluster
 enableTLS=false
-// Comma-separated Doris connector protocols that remain plaintext when TLS is 
enabled
-tlsExcludedProtocols=""
 tlsVerifyMode="strict"
 keyStorePath="/your/keystore.p12"
 keyStorePassword="yourPwd"
diff --git 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
index 4f4130d94de..cbae49d7b10 100644
--- 
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
+++ 
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/suite/Suite.groovy
@@ -135,14 +135,10 @@ class Suite implements GroovyInterceptable {
             return Collections.emptyList()
         }
 
-        String tlsVerifyMode = getConf("tlsVerifyMode", "strict")
-        boolean skipHostnameVerification = 
!tlsVerifyMode.equalsIgnoreCase("strict")
-        String excludedProtocols = getConf("tlsExcludedProtocols", "")
         return [
                 "--doris-enable-tls", "true",
                 "--doris-tls-ca-certificate-path", getConf("trustCACert"),
-                "--doris-tls-skip-hostname-verification", 
skipHostnameVerification.toString(),
-                "--doris-tls-excluded-protocols", excludedProtocols
+                "--doris-tls-skip-hostname-verification", "false"
         ]
     }
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to