This is an automated email from the ASF dual-hosted git repository. dataroaring 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 e7baca53881 [fix](regression) fix test_group_commit_timeout failed due to different error message (#38995) e7baca53881 is described below commit e7baca53881eb791ceb7ebce0dc31ed36b732e05 Author: meiyi <myime...@gmail.com> AuthorDate: Wed Aug 7 23:47:04 2024 +0800 [fix](regression) fix test_group_commit_timeout failed due to different error message (#38995) the case is failed: ``` (test_group_commit_timeout.groovy:48) - failed errCode = 2, detailMessage = query is timeout, killed by timeout checker ``` --- 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 3af6b9b11a0..add4d3c1eec 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("Execute timeout")) + assertTrue(e.getMessage().contains("FragmentMgr cancel worker going to cancel timeout instance") || e.getMessage().contains("Execute timeout") || 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