Fix timeouts in the JWT endpoint tests
This commit is contained in:
parent
522cf68c5d
commit
bc08ac2749
3 changed files with 15 additions and 13 deletions
|
@ -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)
|
||||
|
|
Reference in a new issue