Skip to content

Commit d619700

Browse files
committed
Convert password to Jython string
1 parent 5b7a46b commit d619700

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/python/wlsdeploy/util/cla_helper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ def process_encryption_args(optional_arg_map, is_encryption_supported):
163163
__logger.throwing(ex, class_name=_class_name, method_name=_method_name)
164164
raise ex
165165

166-
optional_arg_map[CommandLineArgUtil.PASSPHRASE_SWITCH] = String(passphrase)
166+
optional_arg_map[CommandLineArgUtil.PASSPHRASE_SWITCH] = str_helper.to_string(String(passphrase))
167167
return
168168

169169
# the encryption passphrase may be in a secret specified by an environment variable.

0 commit comments

Comments
 (0)