This is an automated email from the ASF dual-hosted git repository.
dataroaring 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 3c106751336 [fix](test) replace hardcoded IP with variable in group
commit redirect test (#60573)
3c106751336 is described below
commit 3c106751336a965893e84751e6652273719a1ea2
Author: Xin Liao <[email protected]>
AuthorDate: Mon Feb 9 00:30:39 2026 +0800
[fix](test) replace hardcoded IP with variable in group commit redirect
test (#60573)
---
.../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]