[*] 日常优化

This commit is contained in:
acgist
2023-07-16 09:47:09 +08:00
parent e7667f5d10
commit b5a2ad06b4
21 changed files with 539 additions and 608 deletions

View File

@@ -119,7 +119,9 @@ public class SocketSignal {
public void destroy() {
log.debug("关闭Socket信令服务{}", this.channel);
CloseableUtils.close(this.channel);
this.group.shutdown();
if(this.group != null) {
this.group.shutdown();
}
}
}