tech-study-node icon indicating copy to clipboard operation
tech-study-node copied to clipboard

多用户问题

Open LidoCKT opened this issue 2 years ago • 1 comments

在schedule.ts中如何添加多用户或者不同时间多次推送

定时任务配置 中我尝试多写了一组{}包括的内容会造成无法运行

export const SCHEDULE_CONFIG: Schedule[] = [
  {
    nick: 'A',
    token: 'AAAAAA',
    cron: '0 0 9 * * ?',
    taskConfig: [true, true, true, true],
    paperExitAfterWrong: false,
  },
  {
    nick: 'A',
    token: 'AAAAAA',
    cron: '0 10 9 * * ?',
    taskConfig: [true, true, true, true],
    paperExitAfterWrong: false,
  },
];

LidoCKT avatar Mar 10 '23 07:03 LidoCKT

设置的时间至少间隔30分钟,10分钟不太够

Xu22Web avatar Mar 23 '23 08:03 Xu22Web