Skip to content

Commit a12726a

Browse files
committed
fix
1 parent 9056d73 commit a12726a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

databricks/sdk/oauth.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -575,7 +575,7 @@ def load(self) -> Optional[SessionCredentials]:
575575
with open(self.filename, 'r') as f:
576576
raw = json.load(f)
577577
return SessionCredentials.from_dict(raw,
578-
oidc_endpoints=self._oidc_endpoints,
578+
token_endpoint=self._oidc_endpoints.token_endpoint,
579579
client_id=self._client_id,
580580
client_secret=self._client_secret,
581581
redirect_url=self._redirect_url)

0 commit comments

Comments
 (0)