主动连接zlm事件修改为10分钟

pull/276/head
648540858 2021-12-09 14:23:18 +08:00
parent 2166ec9362
commit 010b09674c
1 changed files with 2 additions and 2 deletions

View File

@ -104,7 +104,7 @@ public class ZLMRunner implements CommandLineRunner {
}); });
} }
Timer timer = new Timer(); Timer timer = new Timer();
// 2分钟后未连接到则不再去主动连接, TODO 并对重启前使用此在zlm的通道发送bye // 10分钟后未连接到则不再去主动连接, TODO 并对重启前使用此在zlm的通道发送bye
timer.schedule(new TimerTask() { timer.schedule(new TimerTask() {
@Override @Override
public void run() { public void run() {
@ -117,7 +117,7 @@ public class ZLMRunner implements CommandLineRunner {
} }
// TODO 清理数据库中与redis不匹配的zlm // TODO 清理数据库中与redis不匹配的zlm
} }
}, 60 * 1000 * 2); }, 60 * 1000 * 10);
} }
@Async @Async