diff options
author | Zuul <zuul@review.opendev.org> | 2019-09-26 04:41:46 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2019-09-26 04:41:46 +0000 |
commit | e3ac200b3bad883721527db8fd961c9c6a8e7075 (patch) | |
tree | d7caf6ab8cf01232b2d05789e6c60cdcc3da5b1a /keystone/api | |
parent | 407565b0017205599cf85b923a71b566b0bef0fe (diff) | |
parent | 05d9fa0f2a405b90ca5b0196021704c236187b1c (diff) | |
download | keystone-e3ac200b3bad883721527db8fd961c9c6a8e7075.tar.gz |
Merge "Add missing ws between words in log messages"
Diffstat (limited to 'keystone/api')
-rw-r--r-- | keystone/api/trusts.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/keystone/api/trusts.py b/keystone/api/trusts.py index 3c40d8c67..6c56fe1b0 100644 --- a/keystone/api/trusts.py +++ b/keystone/api/trusts.py @@ -228,11 +228,11 @@ class TrustResource(ks_flask.ResourceBase): # rule check_str is "" if isinstance(rules, op_checks.TrueCheck): LOG.warning( - "The policy check string for rule \"identity:list_trusts\" has been overridden" - "to \"always true\". In the next release, this will cause the" - "\"identity:list_trusts\" action to be fully permissive as hardcoded" - "enforcement will be removed. To correct this issue, either stop overriding the" - "\"identity:list_trusts\" rule in config to accept the defaults, or explicitly" + "The policy check string for rule \"identity:list_trusts\" has been overridden " + "to \"always true\". In the next release, this will cause the " + "\"identity:list_trusts\" action to be fully permissive as hardcoded " + "enforcement will be removed. To correct this issue, either stop overriding the " + "\"identity:list_trusts\" rule in config to accept the defaults, or explicitly " "set a rule that is not empty." ) if not flask.request.args: |