Hello
I just encountered an issue with the secret value feature. We use secret value for username and password of subversion. And I tried to pass the username and password to a Python script that receives argparse arguments. The resulted password is somehow just two letters: "OK". (However, the log shows the username is still *******, which seems normal)
I tried using the username and password directly when calling the python script, instead of using ${vars.getValue('svnxxx')}, and it works.
I've used regular sys.arg with secret value, and it works as well.
What could be the cause of this? How can I solve this using argparse with the Python script?
Thank you!