Skip to content

Commit 17480a5

Browse files
authored
Update macro_storage_format_parser.py
blackout remoteusername and password because of secret store
1 parent f3db860 commit 17480a5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/macro_storage_format_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,13 +137,13 @@ def transform(self):
137137
+ macro_param_remotefileurl
138138
)
139139
if ac_name == "remotefilehttpuser":
140-
macro_param_remotefilehttpuser = child.text
140+
macro_param_remotefilehttpuser = "****" # Since use of SecretStore passwords need to be reentered after cloud migration
141141
print(
142142
" macro param remote user : "
143143
+ macro_param_remotefilehttpuser
144144
)
145145
if ac_name == "remotefilehttppassword":
146-
macro_param_remotefilehttppassword = child.text
146+
macro_param_remotefilehttppassword = "****" # Since use of SecretStore passwords need to be reentered after cloud migration
147147
print(
148148
" macro param remote pass : "
149149
+ macro_param_remotefilehttppassword

0 commit comments

Comments
 (0)