|
@@ -13,7 +13,6 @@ import (
|
|
|
"strings"
|
|
|
"sync"
|
|
|
"time"
|
|
|
-
|
|
|
)
|
|
|
|
|
|
func Task() {
|
|
@@ -70,12 +69,6 @@ func Task() {
|
|
|
fmt.Println("task end")
|
|
|
}
|
|
|
|
|
|
-func Task123() {
|
|
|
- fmt.Println("start")
|
|
|
- data.FixEdbInfoCalculateMapping()
|
|
|
- fmt.Println("end")
|
|
|
-}
|
|
|
-
|
|
|
//生产环境需要走的任务
|
|
|
func releaseTask() {
|
|
|
|
|
@@ -143,6 +136,10 @@ func releaseTask() {
|
|
|
|
|
|
checkPbDataInterface := task.NewTask("checkPbDataInterface", "0 */5 * * * * ", data.CheckPbDataInterface)
|
|
|
task.AddTask("checkPbDataInterface", checkPbDataInterface)
|
|
|
+
|
|
|
+ //初始化指标更新状态
|
|
|
+ resetEdbInfoIsUpdate := task.NewTask("resetEdbInfoIsUpdate", "0 0 0 * * *", data.ResetEdbInfoIsUpdate)
|
|
|
+ task.AddTask("resetEdbInfoIsUpdate", resetEdbInfoIsUpdate)
|
|
|
}
|
|
|
|
|
|
func TaskTest() {
|