This is an automated email from the ASF dual-hosted git repository.
liaoxin 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 1abe90a931b [chore](regression) add debug log for flaky case of
test_stream_load_cast (#35441)
1abe90a931b is described below
commit 1abe90a931b51938fa5c14089d9d45e8dde6daca
Author: Xin Liao <[email protected]>
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: [email protected]
For additional commands, e-mail: [email protected]