Skip to content

Commit e025c1f

Browse files
committed
Merge branch 'passphrase-prompt' into 'main'
Convert password to Jython string See merge request weblogic-cloud/weblogic-deploy-tooling!1755
2 parents 5b7a46b + d619700 commit e025c1f

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)