zhangjinkun 5 жил өмнө
parent
commit
0c41d70492

+ 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()
 }