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

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


The following commit(s) were added to refs/heads/branch-4.0 by this push:
     new 490e098ffb4 branch-4.0: [fix](test) replace hardcoded IP with variable 
in group commit redirect test #60573 (#60589)
490e098ffb4 is described below

commit 490e098ffb47531c19852943ec20db128c621234
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Thu Feb 12 23:52:32 2026 +0800

    branch-4.0: [fix](test) replace hardcoded IP with variable in group commit 
redirect test #60573 (#60589)
    
    Cherry-picked from #60573
    
    Co-authored-by: Xin Liao <[email protected]>
---
 .../suites/load_p0/stream_load/test_group_commit_redirect.groovy      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/regression-test/suites/load_p0/stream_load/test_group_commit_redirect.groovy 
b/regression-test/suites/load_p0/stream_load/test_group_commit_redirect.groovy
index c7b7b6c5a94..75002e2ac3e 100644
--- 
a/regression-test/suites/load_p0/stream_load/test_group_commit_redirect.groovy
+++ 
b/regression-test/suites/load_p0/stream_load/test_group_commit_redirect.groovy
@@ -166,7 +166,7 @@ suite('test_group_commit_redirect', 'docker') {
 
         location = getRedirectLocation(feIp, fePort, "", "async_mode")
         log.info("default location: ${location}")
-        
assertTrue(location.contains("11.20.20.19:8040/api/$databaseName/$tableName/_stream_load_forward?")
 && (location.contains("forward_to=${be1Ip}:${be1HttpPort}") || 
location.contains("forward_to=${be2Ip}:${be2HttpPort}") || 
location.contains("forward_to=${be3Ip}:${be3HttpPort}")))
+        
assertTrue(location.contains("$feIp:8040/api/$databaseName/$tableName/_stream_load_forward?")
 && (location.contains("forward_to=${be1Ip}:${be1HttpPort}") || 
location.contains("forward_to=${be2Ip}:${be2HttpPort}") || 
location.contains("forward_to=${be3Ip}:${be3HttpPort}")))
 
         location = getRedirectLocation(feIp, fePort, "public", "off_mode")
         log.info("public location: ${location}")
@@ -178,7 +178,7 @@ suite('test_group_commit_redirect', 'docker') {
 
         location = getRedirectLocation(feIp, fePort, "", "off_mode")
         log.info("public location: ${location}")
-        
assertTrue(location.contains("11.20.20.19:8040/api/$databaseName/$tableName/_stream_load"))
+        
assertTrue(location.contains("$feIp:8040/api/$databaseName/$tableName/_stream_load"))
 
     }
 


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

Reply via email to