Merge "Make several configuration property as secret"

This commit is contained in:
Jenkins 2017-04-26 01:56:56 +00:00 committed by Gerrit Code Review
commit b394828a92
2 changed files with 2 additions and 0 deletions

View File

@ -28,6 +28,7 @@ eisoo_client_opts = [
cfg.StrOpt(SERVICE + '_app_id',
help='App id for eisoo authentication.'),
cfg.StrOpt(SERVICE + '_app_secret',
secret=True,
help='App secret for eisoo authenticaiton.'),
]

View File

@ -38,6 +38,7 @@ swift_client_opts = [
cfg.StrOpt('swift_user',
help='Swift user name, if swift_auth_url is set.'),
cfg.StrOpt('swift_key',
secret=True,
help='Swift key for authentication, if swift_auth_url '
' is set.'),
cfg.IntOpt('swift_retry_attempts',