diff options
Diffstat (limited to 'test/core/security/create_jwt.c')
-rw-r--r-- | test/core/security/create_jwt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/core/security/create_jwt.c b/test/core/security/create_jwt.c index b02469fb35..288d9ce109 100644 --- a/test/core/security/create_jwt.c +++ b/test/core/security/create_jwt.c @@ -62,7 +62,7 @@ void create_jwt(const char *json_key_file_path, const char *service_url, } jwt = grpc_jwt_encode_and_sign( &key, service_url == NULL ? GRPC_JWT_OAUTH2_AUDIENCE : service_url, - grpc_max_auth_token_lifetime, scope); + grpc_max_auth_token_lifetime(), scope); grpc_auth_json_key_destruct(&key); if (jwt == NULL) { fprintf(stderr, "Could not create JWT.\n"); |