🐛 移除调试使用的参数

This commit is contained in:
naiba
2021-07-19 11:17:42 +08:00
parent 1e550c98ee
commit fc06fc4b9d
3 changed files with 3 additions and 3 deletions

View File

@@ -71,7 +71,7 @@ func NewServiceSentinel() {
go ServiceSentinelShared.worker()
// 每日将游标往后推一天
_, err := Cron.AddFunc("* * * * *", ServiceSentinelShared.refreshMonthlyServiceStatus)
_, err := Cron.AddFunc("0 0 * * *", ServiceSentinelShared.refreshMonthlyServiceStatus)
if err != nil {
panic(err)
}