parent
77a56b4f9c
commit
7ee21f06ff
|
@ -1028,7 +1028,8 @@ public class ProjectService {
|
|||
}
|
||||
|
||||
// 删除 UI 报告产生的截图
|
||||
public void cleanUpUiReportImg(){
|
||||
public void cleanUpUiReportImg() {
|
||||
try {
|
||||
// 属于定时任务删除调试报告情况
|
||||
// 获取昨天的当前时间
|
||||
Date backupTime = org.apache.commons.lang3.time.DateUtils.addDays(new Date(), -1);
|
||||
|
@ -1038,8 +1039,8 @@ public class ProjectService {
|
|||
.andExecuteTypeEqualTo(ExecuteType.Debug.name());
|
||||
List<ApiScenarioReport> apiScenarioReports = apiScenarioReportMapper.selectByExample(example);
|
||||
// 删除调试报告的截图
|
||||
for(ApiScenarioReport apiScenarioReport : apiScenarioReports){
|
||||
if(FileUtil.deleteDir(new File(FileUtils.UI_IMAGE_DIR + "/" + apiScenarioReport.getId()))){
|
||||
for (ApiScenarioReport apiScenarioReport : apiScenarioReports) {
|
||||
if (FileUtil.deleteDir(new File(FileUtils.UI_IMAGE_DIR + "/" + apiScenarioReport.getId()))) {
|
||||
LogUtil.info("删除 UI 调试报告截图成功,报告 ID 为 :" + apiScenarioReport.getId());
|
||||
|
||||
// 删除调试报告
|
||||
|
@ -1054,6 +1055,10 @@ public class ProjectService {
|
|||
apiScenarioReportMapper.deleteByPrimaryKey(apiScenarioReport.getId());
|
||||
}
|
||||
}
|
||||
} catch (Exception e) {
|
||||
LogUtil.error(e.getMessage(), e);
|
||||
MSException.throwException(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
public void checkProjectIsRepeatable(String projectId) {
|
||||
|
|
Loading…
Reference in New Issue