Skip to content

Commit

Permalink
Fix integration test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
madurangasiriwardena committed Feb 9, 2024
1 parent e45096b commit 3f45630
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2918,7 +2918,11 @@ public IdentityProvider getIDPbyId(Connection dbConnection, int idpId, int tenan
public IdentityProvider getIDPbyResourceId(Connection dbConnection, String resourceId, int tenantId,
String tenantDomain) throws IdentityProviderManagementException {

return getIDP(dbConnection, null, -1, resourceId, tenantId, tenantDomain);
IdentityProvider idp = getIDP(dbConnection, null, -1, resourceId, tenantId, tenantDomain);
if (IdentityApplicationConstants.RESIDENT_IDP_RESERVED_NAME.equals(idp.getIdentityProviderName())) {
fillResidentIdpProperties(idp, tenantDomain);
}
return idp;
}

/**
Expand Down

0 comments on commit 3f45630

Please sign in to comment.