File tree Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Expand file tree Collapse file tree 2 files changed +0
-13
lines changed Original file line number Diff line number Diff line change @@ -316,7 +316,6 @@ def read(self) -> Optional[OAuthToken]:
316
316
host_info = HostDetails (host_url = server_hostname , port = self .port ),
317
317
auth_mech = TelemetryHelper .get_auth_mechanism (auth_provider ),
318
318
auth_flow = TelemetryHelper .get_auth_flow (auth_provider ),
319
- discovery_url = TelemetryHelper .get_discovery_url (auth_provider ),
320
319
socket_timeout = kwargs .get ("_socket_timeout" , None ),
321
320
)
322
321
Original file line number Diff line number Diff line change @@ -86,18 +86,6 @@ def get_auth_flow(auth_provider):
86
86
87
87
return None
88
88
89
- @staticmethod
90
- def get_discovery_url (auth_provider ):
91
- """Get the discovery URL for the auth provider."""
92
- if not auth_provider :
93
- return None
94
-
95
- if isinstance (auth_provider , DatabricksOAuthProvider ):
96
- return auth_provider .oauth_manager .idp_endpoint .get_openid_config_url (
97
- auth_provider .hostname
98
- )
99
- return None
100
-
101
89
102
90
class BaseTelemetryClient (ABC ):
103
91
"""
You can’t perform that action at this time.
0 commit comments