Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
samikshya-db committed Dec 4, 2024
1 parent 55145db commit 3db82e4
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@ private OAuthClient(Builder b) throws IOException {
this.host = b.host;
this.hc = b.hc;

DatabricksConfig config = new DatabricksConfig().setHost(b.host).setDiscoveryUrl(b.discoveryUrl).resolve();
DatabricksConfig config =
new DatabricksConfig().setHost(b.host).setDiscoveryUrl(b.discoveryUrl).resolve();
OpenIDConnectEndpoints oidc = config.getOidcEndpoints();
if (oidc == null) {
throw new DatabricksException(b.host + " does not support OAuth");
Expand Down

0 comments on commit 3db82e4

Please sign in to comment.