Skip to content

Commit

Permalink
Merge branch 'kschu91-bugfix/skew-in-access-token-refresh'
Browse files Browse the repository at this point in the history
  • Loading branch information
tpazderka committed Jun 25, 2021
2 parents ae5702a + e54e5d1 commit b7f118c
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/oic/oauth2/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,14 @@ def do_access_token_refresh(
http_args.update(ht_args)

response = self.request_and_return(
url, response_cls, method, body, body_type, state=state, http_args=http_args
url,
response_cls,
method,
body,
body_type,
state=state,
http_args=http_args,
**kwargs,
)
if token.replaced:
grant = self.get_grant(state)
Expand Down

0 comments on commit b7f118c

Please sign in to comment.