接口.定时执行
12003接口定时执行
新增/app/schedule/testSchedule.js
'use strict';
module.exports = app => {
return {
schedule: {
immediate: true,
cron: "0 12,20 * * *", // 每天 12点、20点 执行
type: 'worker', // 只有一个worker执行
disable: false,
},
async task(ctx) {
const startTime = new Date().getTime();
const { logger } = app;
await ctx.service.test.test01();
logger.info('[schedule/testSchedule.js]', { useTime: `${new Date().getTime() - startTime}/ms` });
},
};
};