Explorar o código

Merge branch 'feature/sync-wx'

* feature/sync-wx:
  自动同步联系人改为每 30 分钟执行一次
boweniac hai 2 semanas
pai
achega
e5f009c8d9
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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()
 	})
 }