This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 4dc2def274b branch-3.0: [fix](case) fix udf cases #48969 (#48971) 4dc2def274b is described below commit 4dc2def274b168c8daf6423b96e19263c465835d Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Wed Mar 12 17:31:09 2025 +0800 branch-3.0: [fix](case) fix udf cases #48969 (#48971) Cherry-picked from #48969 Co-authored-by: Dongyang Li <lidongy...@selectdb.com> --- .../src/main/groovy/org/apache/doris/regression/suite/Suite.groovy | 2 +- regression-test/pipeline/external/conf/regression-conf.groovy | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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 c252dfeedd7..1e7089d7386 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 @@ -2938,7 +2938,7 @@ class Suite implements GroovyInterceptable { def udf_file_dir = new File(udf_file_path).parent backendId_to_backendIP.values().each { be_ip -> sshExec("root", be_ip, "ssh-keygen -f '/root/.ssh/known_hosts' -R \"${be_ip}\"", false) - sshExec("root", be_ip, "ssh -o StrictHostKeyChecking=no root@${be_ip} \"mkdir -p ${udf_file_dir}\"", false) + sshExec("root", be_ip, "mkdir -p ${udf_file_dir}", false) scpFiles("root", be_ip, udf_file_path, udf_file_path, false) } } diff --git a/regression-test/pipeline/external/conf/regression-conf.groovy b/regression-test/pipeline/external/conf/regression-conf.groovy index 5ffbb020c61..7a3f5b76852 100644 --- a/regression-test/pipeline/external/conf/regression-conf.groovy +++ b/regression-test/pipeline/external/conf/regression-conf.groovy @@ -105,7 +105,6 @@ mariadb_10_port=3326 // To enable jdbc test, you need first start hive container. // See `docker/thirdparties/start-thirdparties-docker.sh` enableHiveTest=true -enablePaimonTest=enable_deprecated_case // port of hive2 docker hive2HmsPort=9083 --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org