File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
databricks-sdk-java/src/main/java/com/databricks/sdk/core Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -676,7 +676,7 @@ private OpenIDConnectEndpoints fetchDefaultOidcEndpoints() throws IOException {
676676 return null ;
677677 }
678678 return new OpenIDConnectEndpoints (
679- realAuthUrl .replaceAll ("/authorize" , "/token" ), realAuthUrl );
679+ realAuthUrl .replaceAll ("/authorize" , "/token" ), realAuthUrl );
680680 }
681681 if (isAccountClient () && getAccountId () != null ) {
682682 String prefix = getHost () + "/oidc/accounts/" + getAccountId ();
@@ -690,8 +690,8 @@ private OpenIDConnectEndpoints fetchDefaultOidcEndpoints() throws IOException {
690690 .build ();
691691 try {
692692 return apiClient .execute (
693- new Request ("GET" , "/oidc/.well-known/oauth-authorization-server" ),
694- OpenIDConnectEndpoints .class );
693+ new Request ("GET" , "/oidc/.well-known/oauth-authorization-server" ),
694+ OpenIDConnectEndpoints .class );
695695 } catch (IOException e ) {
696696 throw new DatabricksException ("IO error: " + e .getMessage (), e );
697697 }
You can’t perform that action at this time.
0 commit comments