From 8f4e5d5e57fc9f94aa4e5f748f7799ce71d7444a Mon Sep 17 00:00:00 2001 From: Ace Nassri Date: Wed, 27 Nov 2019 17:53:51 -0800 Subject: [PATCH] Fix typo --- endpoints/getting-started/clients/google-jwt-client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/endpoints/getting-started/clients/google-jwt-client.py b/endpoints/getting-started/clients/google-jwt-client.py index 853ea85da48..354ecd411df 100644 --- a/endpoints/getting-started/clients/google-jwt-client.py +++ b/endpoints/getting-started/clients/google-jwt-client.py @@ -39,7 +39,7 @@ def generate_jwt(sa_keyfile, # build payload payload = { 'iat': now, - # expires after 'expirary_length' seconds. + # expires after 'expiry_length' seconds. "exp": now + expiry_length, # iss must match 'issuer' in the security configuration in your # swagger spec (e.g. service account email). It can be any string.