Remove retry parameter

Remove the retry parameter from the validate function because - as
mentioned in the doc string - it is no longer relevant.

Change-Id: I08eb096435d5501e00d8b11f8fcd43a06221d56d
This commit is contained in:
Jamie Lennox 2015-04-16 10:24:35 +10:00
parent 90edbc8c1c
commit 452bf87121

View File

@ -735,12 +735,11 @@ class AuthProtocol(object):
start_response('401 Unauthorized', resp.headers)
return resp.body
def _validate_token(self, token, env, retry=True):
def _validate_token(self, token, env):
"""Authenticate user token
:param token: token id
:param env: wsgi environment
:param retry: Ignored, as it is not longer relevant
:returns: uncrypted body of the token if the token is valid
:raises exc.InvalidToken: if token is rejected
@ -785,7 +784,7 @@ class AuthProtocol(object):
expires = _get_token_expiration(data)
_confirm_token_not_expired(expires)
else:
data = self._identity_server.verify_token(token, retry)
data = self._identity_server.verify_token(token)
# No need to confirm token expiration here since
# verify_token fails for expired tokens.
expires = _get_token_expiration(data)