Skip to content

Commit 082e420

Browse files
authored
Merge pull request #264 from oracle/WDT-250-create-domain-fails-setting-encrypted-password
Jira WDT-250 fix the decrypted password to work properly with wlst se…
2 parents 16793c4 + 5c4ac02 commit 082e420

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

core/src/main/python/wlsdeploy/aliases/aliases.py

+2
Original file line numberDiff line numberDiff line change
@@ -1154,6 +1154,8 @@ def __decrypt_password(self, text):
11541154
else:
11551155
passphrase = self._model_context.get_encryption_passphrase()
11561156
rtnval = EncryptionUtils.decryptString(text, String(passphrase).toCharArray())
1157+
if rtnval:
1158+
rtnval = String.valueOf(rtnval)
11571159

11581160
return rtnval
11591161

0 commit comments

Comments
 (0)