Merge "Add missing ws between words in log messages"

This commit is contained in:
Zuul 2019-09-26 04:41:46 +00:00 committed by Gerrit Code Review
commit e3ac200b3b
1 changed files with 5 additions and 5 deletions

View File

@ -228,11 +228,11 @@ class TrustResource(ks_flask.ResourceBase):
# rule check_str is "" # rule check_str is ""
if isinstance(rules, op_checks.TrueCheck): if isinstance(rules, op_checks.TrueCheck):
LOG.warning( LOG.warning(
"The policy check string for rule \"identity:list_trusts\" has been overridden" "The policy check string for rule \"identity:list_trusts\" has been overridden "
"to \"always true\". In the next release, this will cause the" "to \"always true\". In the next release, this will cause the "
"\"identity:list_trusts\" action to be fully permissive as hardcoded" "\"identity:list_trusts\" action to be fully permissive as hardcoded "
"enforcement will be removed. To correct this issue, either stop overriding the" "enforcement will be removed. To correct this issue, either stop overriding the "
"\"identity:list_trusts\" rule in config to accept the defaults, or explicitly" "\"identity:list_trusts\" rule in config to accept the defaults, or explicitly "
"set a rule that is not empty." "set a rule that is not empty."
) )
if not flask.request.args: if not flask.request.args: