about summary refs log tree commit diff
path: root/gn_auth/auth
diff options
context:
space:
mode:
Diffstat (limited to 'gn_auth/auth')
-rw-r--r--gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py b/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py
index 5e12575..d663aaf 100644
--- a/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py
+++ b/gn_auth/auth/authentication/oauth2/grants/jwt_bearer_grant.py
@@ -20,7 +20,7 @@ class JWTBearerTokenGenerator(_JWTBearerTokenGenerator):
     DEFAULT_EXPIRES_IN = 300
 
     def get_token_data(#pylint: disable=[too-many-arguments]
-            self, grant_type, client, expires_in=300, user=None, scope=None
+            self, grant_type, client, expires_in=None, user=None, scope=None
     ):
         """Post process data to prevent JSON serialization problems."""
         tokendata = super().get_token_data(