This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new 3418dfd8cad [test](routine load) fix some unstable routine load cases (#42252) (#44376) 3418dfd8cad is described below commit 3418dfd8cad02cc88a312d1da87e4f17cade639e Author: hui lai <1353307...@qq.com> AuthorDate: Thu Nov 21 23:05:38 2024 +0800 [test](routine load) fix some unstable routine load cases (#42252) (#44376) pick #42252 Fix some unstable routine load case. --- .../suites/load_p0/routine_load/test_routine_load_condition.groovy | 1 + .../suites/load_p0/routine_load/test_routine_load_restart_fe.groovy | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/regression-test/suites/load_p0/routine_load/test_routine_load_condition.groovy b/regression-test/suites/load_p0/routine_load/test_routine_load_condition.groovy index 0816280eaac..7735867c749 100644 --- a/regression-test/suites/load_p0/routine_load/test_routine_load_condition.groovy +++ b/regression-test/suites/load_p0/routine_load/test_routine_load_condition.groovy @@ -174,6 +174,7 @@ suite("test_routine_load_condition","p0") { } break; } + sleep(2000) } finally { sql "stop routine load for ${jobName}" sql "DROP TABLE IF EXISTS ${tableName}" diff --git a/regression-test/suites/load_p0/routine_load/test_routine_load_restart_fe.groovy b/regression-test/suites/load_p0/routine_load/test_routine_load_restart_fe.groovy index d8ea6f91179..5554978e500 100644 --- a/regression-test/suites/load_p0/routine_load/test_routine_load_restart_fe.groovy +++ b/regression-test/suites/load_p0/routine_load/test_routine_load_restart_fe.groovy @@ -105,8 +105,9 @@ suite("test_routine_load_restart_fe", "docker") { continue; } } - } catch (Exception e) { sql "stop routine load for ${jobName}" + } catch (Exception e) { + log.info("exception: {}", e) sql "DROP TABLE IF EXISTS ${tableName}" } } --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org