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

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


The following commit(s) were added to refs/heads/branch-2.1 by this push:
     new 3a8df5fe005 [regression-test](fix) fix global var bug (#46013)
3a8df5fe005 is described below

commit 3a8df5fe005e67882a68503ea60d6df612468d2b
Author: shuke <[email protected]>
AuthorDate: Thu Dec 26 15:28:55 2024 +0800

    [regression-test](fix) fix global var bug (#46013)
---
 regression-test/suites/inverted_index_p1/test_show_data.groovy | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/regression-test/suites/inverted_index_p1/test_show_data.groovy 
b/regression-test/suites/inverted_index_p1/test_show_data.groovy
index 648ba67561d..85fbe990802 100644
--- a/regression-test/suites/inverted_index_p1/test_show_data.groovy
+++ b/regression-test/suites/inverted_index_p1/test_show_data.groovy
@@ -566,9 +566,9 @@ suite("test_show_data_with_compaction", "p1") {
     }
 
     def set_be_config = { key, value ->
-        for (backend_id: backendId_to_backendIP.keySet()) {
-            (code, out, err) = 
update_be_config(backendId_to_backendIP.get(backend_id), 
backendId_to_backendHttpPort.get(backend_id), key, value)
-            logger.info("update config: code=" + code + ", out=" + out + ", 
err=" + err)
+        for (backendId: backendId_to_backendIP.keySet()) {
+            def (code1, out1, err1) = 
update_be_config(backendId_to_backendIP.get(backendId), 
backendId_to_backendHttpPort.get(backendId), key, value)
+            logger.info("update config: code=" + code1 + ", out=" + out1 + ", 
err=" + err1)
         }
     }
 


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

Reply via email to