Skip to content

Commit

Permalink
Add the cluster name to the hashCode implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
joegallo committed Jan 2, 2025
1 parent d24dfc0 commit 2aad940
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ public boolean equals(Object o) {
*/
@Override
public int hashCode() {
return Objects.hash(databases, equalsHashCodeFailures(), getNodes(), equalsHashCodeNodesMap());
return Objects.hash(databases, getClusterName(), equalsHashCodeFailures(), getNodes(), equalsHashCodeNodesMap());
}

/*
Expand Down

0 comments on commit 2aad940

Please sign in to comment.