diff --git a/backend/src/main/java/io/metersphere/track/service/TestPlanReportService.java b/backend/src/main/java/io/metersphere/track/service/TestPlanReportService.java index 820f8f996a..ec0f1f7f26 100644 --- a/backend/src/main/java/io/metersphere/track/service/TestPlanReportService.java +++ b/backend/src/main/java/io/metersphere/track/service/TestPlanReportService.java @@ -1248,10 +1248,10 @@ public class TestPlanReportService { TestPlanExecuteInfo executeInfo = TestPlanReportExecuteCatch.getTestPlanExecuteInfo(planReportId); int unFinishNum = executeInfo.countUnFinishedNum(); if (unFinishNum > 0) { - //15分钟没有案例执行结果更新,则定位超时 + //20分钟没有案例执行结果更新,则定位超时 long lastCountTime = executeInfo.getLastFinishedNumCountTime(); long nowTime = System.currentTimeMillis(); - if (nowTime - lastCountTime > 9000) { + if (nowTime - lastCountTime > 1200000) { return true; } }