feat: 移除监控任务
All checks were successful
CI Monitor MIflow / build-image (push) Successful in 44s

This commit is contained in:
zhaoyingbo 2024-08-09 02:05:03 +00:00
parent 713b67a52c
commit 275160f3ae

View File

@ -1,7 +1,6 @@
import { scheduleJob } from "node-schedule"
import manageRobot from "../controllers/manageRobot"
import monitorJob from "./monitorJob"
import syncPipeLine from "./syncPipeLine"
const initSchedule = async () => {
@ -9,12 +8,12 @@ const initSchedule = async () => {
scheduleJob("0 10 * * 5", manageRobot.sendCIReportByCron)
// 每15分钟同步一次CI数据
scheduleJob("*/15 * * * *", syncPipeLine)
// 每30秒执行一次监控任务
scheduleJob("*30 * * * * *", monitorJob)
// // 每30秒执行一次监控任务
// scheduleJob("*30 * * * * *", monitorJob)
// 立即同步一次
syncPipeLine()
// 立即执行一次监控任务
monitorJob()
// // 立即执行一次监控任务
// monitorJob()
}
export default initSchedule