We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e14e03c commit ae6fc17Copy full SHA for ae6fc17
gen3/auth.py
@@ -34,7 +34,7 @@ def endpoint_from_token(token_str):
34
urlparts = urlparse(info["iss"])
35
endpoint = urlparts.scheme + "://" + urlparts.hostname
36
if urlparts.port:
37
- endpoint += str(urlparts.port)
+ endpoint += ":" + str(urlparts.port)
38
return endpoint
39
40
def _handle_access_token_response(resp, token_key):
0 commit comments