You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@doris.apache.org by yi...@apache.org on 2023/04/08 07:17:59 UTC

[doris] branch master updated: [fix](regression-test) fix wrong http port in regression-test case compaction-with-delete #18484

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

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


The following commit(s) were added to refs/heads/master by this push:
     new a2858bbbfc [fix](regression-test) fix wrong http port in regression-test case compaction-with-delete #18484
a2858bbbfc is described below

commit a2858bbbfcacacc231c80ad1404ded057d4d7c1a
Author: 奕冷 <82...@users.noreply.github.com>
AuthorDate: Sat Apr 8 15:17:52 2023 +0800

    [fix](regression-test) fix wrong http port in regression-test case compaction-with-delete #18484
---
 .../suites/compaction/test_compacation_with_delete.groovy           | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/regression-test/suites/compaction/test_compacation_with_delete.groovy b/regression-test/suites/compaction/test_compacation_with_delete.groovy
index 96943e1c0d..8f83f3d673 100644
--- a/regression-test/suites/compaction/test_compacation_with_delete.groovy
+++ b/regression-test/suites/compaction/test_compacation_with_delete.groovy
@@ -28,7 +28,7 @@ suite("test_compaction_with_delete") {
             setConfigCommand.append("curl -X POST http://")
             setConfigCommand.append(backend[2])
             setConfigCommand.append(":")
-            setConfigCommand.append(backend[5])
+            setConfigCommand.append(backend[6])
             setConfigCommand.append("/api/update_config?")
             String command1 = setConfigCommand.toString() + "enable_vertical_compaction=true"
             logger.info(command1)
@@ -45,7 +45,7 @@ suite("test_compaction_with_delete") {
             setConfigCommand.append("curl -X POST http://")
             setConfigCommand.append(backend[2])
             setConfigCommand.append(":")
-            setConfigCommand.append(backend[5])
+            setConfigCommand.append(backend[6])
             setConfigCommand.append("/api/update_config?")
             String command1 = setConfigCommand.toString() + "enable_vertical_compaction=false"
             logger.info(command1)
@@ -64,7 +64,7 @@ suite("test_compaction_with_delete") {
         def backendId_to_backendHttpPort = [:]
         for (String[] backend in backends) {
             backendId_to_backendIP.put(backend[0], backend[2])
-            backendId_to_backendHttpPort.put(backend[0], backend[5])
+            backendId_to_backendHttpPort.put(backend[0], backend[6])
         }
 
         backend_id = backendId_to_backendIP.keySet()[0]


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@doris.apache.org
For additional commands, e-mail: commits-help@doris.apache.org