This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
commit 3aab6b1d6180882d99daac011337033edb2d8ddd Author: Xin Liao <liaoxin...@126.com> AuthorDate: Mon May 27 19:40:38 2024 +0800 [chore](regression) add debug log for flaky case of test_stream_load_cast (#35441) --- .../suites/load_p0/stream_load/test_stream_load_cast.groovy | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/regression-test/suites/load_p0/stream_load/test_stream_load_cast.groovy b/regression-test/suites/load_p0/stream_load/test_stream_load_cast.groovy index 1f3c8e24f78..cf2ef15333a 100644 --- a/regression-test/suites/load_p0/stream_load/test_stream_load_cast.groovy +++ b/regression-test/suites/load_p0/stream_load/test_stream_load_cast.groovy @@ -301,6 +301,10 @@ suite("test_stream_load_cast", "p0") { } log.info("Stream load result: ${result}".toString()) def json = parseJson(result) + if (json.ErrorURL && !json.ErrorURL.isEmpty()) { + def (code, out, err) = curl("GET", json.ErrorURL) + log.info("error url: " + out) + } assertEquals("success", json.Status.toLowerCase()) assertEquals(1, json.NumberTotalRows) assertEquals(0, json.NumberFilteredRows) --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org