Skip to content

Commit

Permalink
Fix token refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
enolfc committed Jun 20, 2024
1 parent 16315a9 commit 3bf8f24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion egi_notebooks_hub/egiauthenticator.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ async def refresh_user(self, user, handler=None):
body=body,
)
try:
resp = http_client.fetch(req)
resp = await http_client.fetch(req)
except HTTPClientError as e:
self.log.warning("Unable to refresh token, maybe expired: %s", e)
return False
Expand Down

0 comments on commit 3bf8f24

Please sign in to comment.