Skip to content

Commit a9e72cf

Browse files
committed
Merge branch 'dev' of https://github.com/codingapi/tx-lcn into dev
2 parents 5388379 + d5a97e1 commit a9e72cf

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

txlcn-txmsg-netty/src/main/java/com/codingapi/txlcn/txmsg/netty/bean/SocketManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ public boolean noConnect(SocketAddress socketAddress) {
175175
public List<String> removeKeys(String moduleName) {
176176
List<String> allKeys = new ArrayList<>();
177177
for (Channel channel : channels) {
178-
if (getModuleName(channel).equals(moduleName)) {
178+
if (moduleName.equals(getModuleName(channel))) {
179179
allKeys.add(channel.remoteAddress().toString());
180180
}
181181
}

0 commit comments

Comments
 (0)