Commit ee92a5ac authored by 赵啸非's avatar 赵啸非

添加php健康度检测

parent 529c3c3e
......@@ -76,6 +76,8 @@ public class CheckProjectStatusTaskImpl implements ITaskExcuteService {
setupProjectEntity.setUpdateTime(new Date());
setupProjectService.update(setupProjectEntity);
}
}catch (Exception e){
log.error("发生异常:{}",e.getMessage());
}
} else if (ProjectTypeEnum.前端.getValue() == setupProjectEntity.getProjectType()) {
//todo 前端 判断路径文件是否存在 如果存在 则代表运行
......@@ -111,6 +113,8 @@ public class CheckProjectStatusTaskImpl implements ITaskExcuteService {
setupProjectEntity.setUpdateTime(new Date());
setupProjectService.update(setupProjectEntity);
}
}catch (Exception e){
log.error("发生异常:{}",e.getMessage());
}
}
......@@ -130,6 +134,8 @@ public class CheckProjectStatusTaskImpl implements ITaskExcuteService {
setupProjectEntity.setUpdateTime(new Date());
setupProjectService.update(setupProjectEntity);
}
}catch (Exception e){
log.error("发生异常:{}",e.getMessage());
}
}
} else {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment