Ver Fonte

Merge branch 'feature/sync-wx'

* feature/sync-wx:
  自动同步联系人改为每 30 分钟执行一次
boweniac há 2 semanas atrás
pai
commit
e5f009c8d9
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      crontask/init.go

+ 1 - 1
crontask/init.go

@@ -44,7 +44,7 @@ func ScheduleRun(c *cron.Cron, serverCtx *svc.ServiceContext) {
 	})
 
 	syncWx := NewCronTask(context.Background(), serverCtx)
-	c.AddFunc("* * * * *", func() {
+	c.AddFunc("*/30 * * * *", func() {
 		syncWx.syncWx()
 	})
 }