Skip to content

Commit

Permalink
Merge pull request #6232 from wso2/revert-6231-revert-6220-outbound-p…
Browse files Browse the repository at this point in the history
…rov-issue

Revert "Revert "Fix: Unable to Update Google Connector after Configuring Outbound Provisioning for Google""
  • Loading branch information
bhagyasakalanka authored Jan 2, 2025
2 parents aa26213 + c34506b commit da378db
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2184,11 +2184,13 @@ 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 (propertyType != null && IdentityApplicationConstants.ConfigElements.
PROPERTY_TYPE_BLOB.equals(propertyType.trim())) {
if (IdentityApplicationConstants.ConfigElements.PROPERTY_TYPE_BLOB.equals(propertyType)) {
property.setValue(blobValue);
} else {
property.setValue(value);
Expand Down

0 comments on commit da378db

Please sign in to comment.