Merge "Changing the confidence in the oslo secret plugin"

This commit is contained in:
Jenkins 2015-10-23 14:40:06 +00:00 committed by Gerrit Code Review
commit 9e4cc0798e
1 changed files with 2 additions and 2 deletions

View File

@ -40,8 +40,8 @@ def password_config_option_not_marked_secret(context, config):
# variable, secret=secret.
elif not context.check_call_arg_value('secret', 'True'):
return bandit.Issue(
severity=bandit.LOW,
confidence=bandit.MEDIUM,
severity=bandit.MEDIUM,
confidence=bandit.LOW,
text="oslo config option possibly not marked secret=True "
"identified."
)