diff --git a/src/main/java/io/fusionauth/domain/provider/BaseIdentityProvider.java b/src/main/java/io/fusionauth/domain/provider/BaseIdentityProvider.java index 784bee32..6ef994eb 100644 --- a/src/main/java/io/fusionauth/domain/provider/BaseIdentityProvider.java +++ b/src/main/java/io/fusionauth/domain/provider/BaseIdentityProvider.java @@ -81,6 +81,7 @@ public boolean equals(Object o) { Objects.equals(lastUpdateInstant, that.lastUpdateInstant) && linkingStrategy == that.linkingStrategy && Objects.equals(name, that.name) && + Objects.equals(tenantId, that.tenantId) && Objects.equals(tenantConfiguration, that.tenantConfiguration); } @@ -88,7 +89,7 @@ public boolean equals(Object o) { @Override public int hashCode() { - return Objects.hash(super.hashCode(), data, applicationConfiguration, debug, id, insertInstant, lambdaConfiguration, lastUpdateInstant, linkingStrategy, name, tenantConfiguration); + return Objects.hash(super.hashCode(), data, applicationConfiguration, debug, id, insertInstant, lambdaConfiguration, lastUpdateInstant, linkingStrategy, name, tenantId, tenantConfiguration); } @JsonIgnore