兼容casbin2.24.0版本log

迁移脚本编译时不打包
This commit is contained in:
linwenxiang
2021-03-05 13:23:21 +08:00
parent 48f0cb46ec
commit 39dd1ee6f8
56 changed files with 320 additions and 454 deletions
+2 -2
View File
@@ -101,13 +101,13 @@ func Setup(dbs map[string]*gorm.DB) {
fmt.Println(time.Now().Format(timeFormat), " [INFO] JobCore Starting...")
for k, db := range dbs {
global.Cfg.SetCrontab(k, cronjob.NewWithSeconds())
global.Runtime.SetCrontab(k, cronjob.NewWithSeconds())
setup(k, db)
}
}
func setup(key string, db *gorm.DB) {
crontab := global.Cfg.GetCrontabKey(key)
crontab := global.Runtime.GetCrontabKey(key)
sysJob := models.SysJob{}
jobList := make([]models.SysJob, 0)
err := sysJob.GetList(db, &jobList)