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 5a1fd5b commit 0426acfCopy full SHA for 0426acf
1 file changed
databricks-sdk-java/src/main/java/com/databricks/sdk/core/DatabricksConfig.java
@@ -766,8 +766,6 @@ public String getEffectiveOAuthRedirectUrl() {
766
return redirectUrl != null ? redirectUrl : "http://localhost:8080/callback";
767
}
768
769
- private static final String AZURE_AUTH_ENDPOINT = "/aad/auth";
770
-
771
/**
772
* [Internal] Load the Azure tenant ID from the Azure Databricks login page. If the tenant ID is
773
* already set, this method does nothing.
@@ -778,7 +776,8 @@ public void loadAzureTenantId() {
778
776
return;
779
777
780
781
- String loginUrl = host + AZURE_AUTH_ENDPOINT;
+ final String azureAuthEndpoint = "/aad/auth";
+ String loginUrl = host + azureAuthEndpoint;
782
logger.debug("Loading tenant ID from {}", loginUrl);
783
784
try {
0 commit comments