🐛 移除调试使用的参数

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

@@ -13,7 +13,7 @@ import (
pb "github.com/naiba/nezha/proto"
)
var Version = "v0.9.7" // !!记得修改 README 中的 badge 版本!!
var Version = "v0.9.8" // !!记得修改 README 中的 badge 版本!!
var (
Conf *model.Config

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