Skip to content

Commit 5c4ac02

Browse files
Jira WDT-250 fix the decrypted password to work properly with wlst setter
1 parent 6150063 commit 5c4ac02

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)