This is an automated email from the ASF dual-hosted git repository.

albumenj pushed a commit to branch 3.2
in repository https://gitbox.apache.org/repos/asf/dubbo.git


The following commit(s) were added to refs/heads/3.2 by this push:
     new d69ae9861b fix listener hash code error (#13408)
d69ae9861b is described below

commit d69ae9861befd520e10ccc43bb712343abe7c2c6
Author: Owen.Cai <[email protected]>
AuthorDate: Wed Nov 29 21:04:42 2023 +0800

    fix listener hash code error (#13408)
    
    Co-authored-by: caizhenqiu <[email protected]>
---
 .../java/org/apache/dubbo/registry/nacos/NacosAggregateListener.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dubbo-registry/dubbo-registry-nacos/src/main/java/org/apache/dubbo/registry/nacos/NacosAggregateListener.java
 
b/dubbo-registry/dubbo-registry-nacos/src/main/java/org/apache/dubbo/registry/nacos/NacosAggregateListener.java
index e3e3a90c10..dbabcdc46c 100644
--- 
a/dubbo-registry/dubbo-registry-nacos/src/main/java/org/apache/dubbo/registry/nacos/NacosAggregateListener.java
+++ 
b/dubbo-registry/dubbo-registry-nacos/src/main/java/org/apache/dubbo/registry/nacos/NacosAggregateListener.java
@@ -98,6 +98,6 @@ public class NacosAggregateListener {
 
     @Override
     public int hashCode() {
-        return Objects.hash(notifyListener, serviceNames, serviceInstances);
+        return Objects.hash(notifyListener);
     }
 }

Reply via email to