Skip to content

Commit

Permalink
Merge pull request #6231 from wso2/revert-6220-outbound-prov-issue
Browse files Browse the repository at this point in the history
Revert "Fix: Unable to Update Google Connector after Configuring Outbound Provisioning for Google"
  • Loading branch information
UdeshAthukorala authored Dec 19, 2024
2 parents 1365a4d + 2befdf7 commit 1d488c6
Showing 1 changed file with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2184,13 +2184,11 @@ public ProvisioningConnectorConfig[] getProvisioningConnectorConfigs(Connection
String blobValue = getBlobValue(rs2.getBinaryStream("PROPERTY_BLOB_VALUE"));

String propertyType = rs2.getString("PROPERTY_TYPE");
if (propertyType != null) {
propertyType = propertyType.trim();
}
String isSecret = rs2.getString("IS_SECRET");

property.setName(name);
if (IdentityApplicationConstants.ConfigElements.PROPERTY_TYPE_BLOB.equals(propertyType)) {
if (propertyType != null && IdentityApplicationConstants.ConfigElements.
PROPERTY_TYPE_BLOB.equals(propertyType.trim())) {
property.setValue(blobValue);
} else {
property.setValue(value);
Expand Down

0 comments on commit 1d488c6

Please sign in to comment.