This is an automated email from the ASF dual-hosted git repository.
hellostephen 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 3e8112219ed [fix](ci) allow stream load cost more time (#60909)
3e8112219ed is described below
commit 3e8112219ed5340913fbba212c69bd8a495fe215
Author: Dongyang Li <[email protected]>
AuthorDate: Sat Feb 28 16:11:53 2026 +0800
[fix](ci) allow stream load cost more time (#60909)
---
.../org/apache/doris/regression/action/StreamLoadAction.groovy | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/StreamLoadAction.groovy
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/StreamLoadAction.groovy
index 4be67994cde..265727788f2 100644
---
a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/StreamLoadAction.groovy
+++
b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/StreamLoadAction.groovy
@@ -584,10 +584,10 @@ class StreamLoadAction implements SuiteAction {
long elapsed = endTime - startTime
try {
// stream load may cost more time than expected in
regression test, because of case run in parallel.
- // So we allow stream load cost more time, use 4 * time
as threshold.
- Assert.assertTrue("Stream load Expect elapsed <= 4 *
${time}, but meet ${elapsed}", elapsed <= 4 * time)
+ // So we allow stream load cost more time, use 20 * time
as threshold.
+ Assert.assertTrue("Stream load Expect elapsed <= 20 *
${time}, but meet ${elapsed}", elapsed <= 20 * time)
} catch (Throwable t) {
- throw new IllegalStateException("Stream load Expect
elapsed <= 4 * ${time}, but meet ${elapsed}")
+ throw new IllegalStateException("Stream load Expect
elapsed <= 20 * ${time}, but meet ${elapsed}")
}
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]