[*] 本地消费者暂停不能被远程消费者暂停恢复影响

This commit is contained in:
acgist
2023-04-30 15:09:26 +08:00
parent d9915e3013
commit 10551daf31

View File

@@ -376,7 +376,7 @@ class Taoyao {
// 定时打印使用情况
setInterval(async () => {
this.usage();
}, 300 * 1000);
}, 60 * 1000);
}
/**
@@ -552,7 +552,7 @@ class Taoyao {
}
closeAllRoom() {
console.info("关闭所有房间:", this.rooms.size());
console.info("关闭所有房间:", this.rooms.size);
this.rooms.forEach((room, roomId) => {
room.closeAll();
});