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

This commit is contained in:
648540858 2021-12-09 14:23:18 +08:00
parent 4d4d274e9b
commit 41d3a7c240

View File

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