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 55145db commit 3db82e4Copy full SHA for 3db82e4
databricks-sdk-java/src/main/java/com/databricks/sdk/core/oauth/OAuthClient.java
@@ -113,7 +113,8 @@ private OAuthClient(Builder b) throws IOException {
113
this.host = b.host;
114
this.hc = b.hc;
115
116
- DatabricksConfig config = new DatabricksConfig().setHost(b.host).setDiscoveryUrl(b.discoveryUrl).resolve();
+ DatabricksConfig config =
117
+ new DatabricksConfig().setHost(b.host).setDiscoveryUrl(b.discoveryUrl).resolve();
118
OpenIDConnectEndpoints oidc = config.getOidcEndpoints();
119
if (oidc == null) {
120
throw new DatabricksException(b.host + " does not support OAuth");
0 commit comments