remove unnecessary context

This commit is contained in:
Livio Amstutz 2021-08-20 07:39:34 +02:00
parent 1132c9d93d
commit 807da0b27d
2 changed files with 2 additions and 3 deletions

View file

@ -89,5 +89,5 @@ func (j *jwtProfileTokenSource) Token() (*oauth2.Token, error) {
if err != nil {
return nil, err
}
return client.JWTProfileExchange(nil, oidc.NewJWTProfileGrantRequest(assertion, j.scopes...), j)
return client.JWTProfileExchange(oidc.NewJWTProfileGrantRequest(assertion, j.scopes...), j)
}