Cleanup invalid token exception text

The invalid token exception text was not as clear as it could be.

Change-Id: I73692f86652cde1574d60a6aba7f44611a9fcca6
This commit is contained in:
Brant Knudson 2014-02-10 18:10:30 -06:00
parent 8557e4756e
commit 7155564e1b
1 changed files with 1 additions and 5 deletions

View File

@ -195,11 +195,7 @@ class Manager(manager.Manager):
LOG.exception(_('Unexpected error or malformed token determining '
'token expiry: %s'), token)
# FIXME(morganfainberg): This error message needs to be updated to
# reflect the token couldn't be found, but this change needs to wait
# until Icehouse due to string freeze in Havana. This should be:
# "Failed to find valid token" or something similar.
raise exception.TokenNotFound(_('Failed to validate token'))
raise exception.TokenNotFound(_("The token is malformed or expired."))
def _token_belongs_to(self, token, belongs_to):
"""Check if the token belongs to the right tenant.