CheckSortedSet

This commit is contained in:
zhangkun9038@dingtalk.com 2025-01-13 20:36:40 +08:00
parent c9600d9355
commit cd998f0a26

View File

@ -438,7 +438,10 @@ func main() {
core.WriteLogProcess(&cr)
}()
go func() {
CheckSortedSet(&cr)
for {
time.Sleep(30 * time.Minute)
CheckSortedSet(&cr)
}
}()
// 永久阻塞
select {}