Skip to content

Commit

Permalink
static
Browse files Browse the repository at this point in the history
  • Loading branch information
adamxchen committed Sep 28, 2024
1 parent ad69be1 commit 0b0ad8a
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,16 @@ public StoreConfig cloneStoreConfig() {
return clonedStoreConfig;
}

@Override
public int hashCode() {
return Objects.hash(
storeClusterConfig.storeName,
storeClusterConfig.cluster,
storeClusterConfig.deleting,
storeClusterConfig.migrationSrcCluster,
storeClusterConfig.migrationDestCluster);
}

@Override
public boolean equals(Object o) {
if (this == o) {
Expand Down

0 comments on commit 0b0ad8a

Please sign in to comment.