guoziyun 8 kuukautta sitten
vanhempi
sitoutus
52cb370cdc
2 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 1 1
      oms/dist/services/cron-jobs/index.js
  2. 1 1
      oms/services/cron-jobs/index.ts

+ 1 - 1
oms/dist/services/cron-jobs/index.js

@@ -20,7 +20,7 @@ const settings = [
     // ["daily-notify-at-midday", "0 23 * * *", require("./notify/daily-notify-at-midday") as CronJobModule], // 每天晚上11点,对应巴西时间中午12点推送一轮
     // ["daily-notify-at-evening", "0 3 * * *", require("./notify/daily-notify-at-evening") as CronJobModule], // 每天凌晨3点,对应巴西时间下午4点
     // ["daily-notify-at-afternoon", "0 7 * * *", require("./notify/daily-notify-at-afternoon") as CronJobModule], // 每天上午7点,对应巴西时间晚上8点
-    ["local-timezone-notify", "30 18 * * *", require("./notify/local-timezone-notify")], // 每天下午6点,开始制定当天的推送计划
+    ["local-timezone-notify", "5 17 * * *", require("./notify/local-timezone-notify")], // 每天下午6点,开始制定当天的推送计划
 ];
 /**
  * Starts all scheduled cron jobs.

+ 1 - 1
oms/services/cron-jobs/index.ts

@@ -22,7 +22,7 @@ const settings: [string, string, CronJobModule][] = [
   // ["daily-notify-at-midday", "0 23 * * *", require("./notify/daily-notify-at-midday") as CronJobModule], // 每天晚上11点,对应巴西时间中午12点推送一轮
   // ["daily-notify-at-evening", "0 3 * * *", require("./notify/daily-notify-at-evening") as CronJobModule], // 每天凌晨3点,对应巴西时间下午4点
   // ["daily-notify-at-afternoon", "0 7 * * *", require("./notify/daily-notify-at-afternoon") as CronJobModule], // 每天上午7点,对应巴西时间晚上8点
-  ["local-timezone-notify", "30 18 * * *", require("./notify/local-timezone-notify") as CronJobModule], // 每天下午6点,开始制定当天的推送计划
+  ["local-timezone-notify", "5 17 * * *", require("./notify/local-timezone-notify") as CronJobModule], // 每天下午6点,开始制定当天的推送计划
 ];
 
 /**