zhangjinkun 5 年之前
父節點
當前提交
0c41d70492
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      udpcreateindex/src/task.go

+ 1 - 1
udpcreateindex/src/task.go

@@ -12,7 +12,7 @@ import (
 func task_index() {
 	c := cron.New()
 	c.AddFunc("20 30 5 * * *", func() { task_projects() })
-	c.AddFunc("0 0 */2 * * *", func() { task_biddingfile() }) //每两小时执行一次
+	c.AddFunc("0 15 * * * *", func() { task_biddingfile() }) //每两小时执行一次
 	c.Start()
 }