We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5388379 + d5a97e1 commit a9e72cfCopy full SHA for a9e72cf
1 file changed
txlcn-txmsg-netty/src/main/java/com/codingapi/txlcn/txmsg/netty/bean/SocketManager.java
@@ -175,7 +175,7 @@ public boolean noConnect(SocketAddress socketAddress) {
175
public List<String> removeKeys(String moduleName) {
176
List<String> allKeys = new ArrayList<>();
177
for (Channel channel : channels) {
178
- if (getModuleName(channel).equals(moduleName)) {
+ if (moduleName.equals(getModuleName(channel))) {
179
allKeys.add(channel.remoteAddress().toString());
180
}
181
0 commit comments