This is an automated email from the ASF dual-hosted git repository.
yiguolei pushed a commit to branch branch-4.1
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-4.1 by this push:
new 192c2dc0487 branch-4.1: [fix](regression) Wait for show config output
before parsing #65486 (#65711)
192c2dc0487 is described below
commit 192c2dc04873599c75b0c4e125d4b8f5a640b201
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Fri Jul 24 11:17:57 2026 +0800
branch-4.1: [fix](regression) Wait for show config output before parsing
#65486 (#65711)
Cherry-picked from #65486
Co-authored-by: shuke <[email protected]>
---
.../index_format_v2/test_mow_table_with_format_v2.groovy | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/regression-test/suites/inverted_index_p0/index_format_v2/test_mow_table_with_format_v2.groovy
b/regression-test/suites/inverted_index_p0/index_format_v2/test_mow_table_with_format_v2.groovy
index ea288d09679..d4c3c29b87c 100644
---
a/regression-test/suites/inverted_index_p0/index_format_v2/test_mow_table_with_format_v2.groovy
+++
b/regression-test/suites/inverted_index_p0/index_format_v2/test_mow_table_with_format_v2.groovy
@@ -93,8 +93,8 @@ suite("test_mow_table_with_format_v2",
"inverted_index_format_v2") {
def process = cmd.execute()
def output = new StringBuffer()
def errorOutput = new StringBuffer()
- process.consumeProcessOutput(output, errorOutput)
- int exitCode = process.waitFor()
+ process.waitForProcessOutput(output, errorOutput)
+ int exitCode = process.exitValue()
logger.info("Show config: code=" + exitCode + ", out=" + output + ",
err=" + errorOutput)
assertEquals(exitCode, 0)
def configList = parseJson(output.toString().trim())
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]