This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 4668ebd1f60 [fix](regression) fix test_group_commit_timeout failed due to different error message (#38995) (#39068) 4668ebd1f60 is described below commit 4668ebd1f60725a48218e0f65c0ad9aed607ae6d Author: meiyi <myime...@gmail.com> AuthorDate: Thu Aug 8 14:37:10 2024 +0800 [fix](regression) fix test_group_commit_timeout failed due to different error message (#38995) (#39068) pick https://github.com/apache/doris/pull/38995 --- regression-test/suites/insert_p0/test_group_commit_timeout.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-test/suites/insert_p0/test_group_commit_timeout.groovy b/regression-test/suites/insert_p0/test_group_commit_timeout.groovy index bd0bcfcdeb3..5b7478c8d5e 100644 --- a/regression-test/suites/insert_p0/test_group_commit_timeout.groovy +++ b/regression-test/suites/insert_p0/test_group_commit_timeout.groovy @@ -46,7 +46,7 @@ suite("test_group_commit_timeout", "nonConcurrent") { } catch (Exception e) { long end = System.currentTimeMillis() logger.info("failed " + e.getMessage()) - assertTrue(e.getMessage().contains("FragmentMgr cancel worker going to cancel timeout instance") || e.getMessage().contains("CANCELLED")) + assertTrue(e.getMessage().contains("FragmentMgr cancel worker going to cancel timeout instance") || e.getMessage().contains("CANCELLED") || e.getMessage().contains("timeout")) assertTrue(end - start <= 60000) } finally { sql "SET global query_timeout = ${query_timeout[0][1]}" --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org