From 4c7ca6179452c05f7399098f55647e82e85a3c74 Mon Sep 17 00:00:00 2001 From: Yongqiang YANG Date: Mon, 15 Jul 2024 21:59:41 +0800 Subject: [PATCH] [chore](test) enlarge timeout of mv creating --- .../org/apache/doris/regression/action/CreateMVAction.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/CreateMVAction.groovy b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/CreateMVAction.groovy index 0319158cd179547..45850ce1d2e9872 100644 --- a/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/CreateMVAction.groovy +++ b/regression-test/framework/src/main/groovy/org/apache/doris/regression/action/CreateMVAction.groovy @@ -63,7 +63,7 @@ class CreateMVAction implements SuiteAction { def tmp = doRun("SHOW ALTER TABLE MATERIALIZED VIEW ORDER BY CreateTime DESC LIMIT 1;") sqlResult = tmp.result[0] log.info("result: ${sqlResult}".toString()) - if (tryTimes == 120 || sqlResult.contains("CANCELLED")) { + if (tryTimes == 600 || sqlResult.contains("CANCELLED")) { throw new IllegalStateException("MV create check times over limit, result='${sqlResult}'"); } Thread.sleep(1200)