Fix timeouts in the JWT endpoint tests

This commit is contained in:
Joseph Schorr 2016-04-13 13:59:07 -04:00 committed by Jimmy Zelinskie
parent 522cf68c5d
commit bc08ac2749
3 changed files with 15 additions and 13 deletions

View file

@ -174,6 +174,7 @@ def delete_service_key(service, kid):
match = TOKEN_REGEX.match(jwt_header)
if match is None:
abort(400)
encoded_jwt = match.group(1)
signer_kid = _signer_kid(encoded_jwt)