Merge "Mask password when specified as an argument with a space"

This commit is contained in:
Zuul 2018-11-12 15:25:25 +00:00 committed by Gerrit Code Review
commit 2ef48214a2
1 changed files with 1 additions and 1 deletions

View File

@ -395,7 +395,7 @@ class OpenStackShell(app.App):
# Parent __init__ parses argv into self.options
super(OpenStackShell, self).initialize_app(argv)
self.log.info("START with options: %s",
strutils.mask_password(self.command_options))
strutils.mask_password(" ".join(self.command_options)))
self.log.debug("options: %s",
strutils.mask_password(self.options))