This commit is contained in:
孟帅
2023-09-06 17:28:16 +08:00
parent 9fa670e5c3
commit 5670aa9c82
22 changed files with 156 additions and 127 deletions

View File

@@ -28,6 +28,10 @@ func (server *Server) startCron() {
// 心跳超时检查
if gcron.Search(server.getCronKey(CronHeartbeatVerify)) == nil {
_, _ = gcron.AddSingleton(server.ctx, "@every 300s", func(ctx context.Context) {
server.mutexConns.Lock()
defer server.mutexConns.Unlock()
if server == nil || server.clients == nil {
return
}
@@ -43,6 +47,10 @@ func (server *Server) startCron() {
// 认证检查
if gcron.Search(server.getCronKey(CronAuthVerify)) == nil {
_, _ = gcron.AddSingleton(server.ctx, "@every 300s", func(ctx context.Context) {
server.mutexConns.Lock()
defer server.mutexConns.Unlock()
if server == nil || server.clients == nil {
return
}