We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c7ae67 commit 56859bfCopy full SHA for 56859bf
1 file changed
databricks-sdk-java/src/main/java/com/databricks/sdk/core/DatabricksConfig.java
@@ -762,8 +762,6 @@ public String getEffectiveOAuthRedirectUrl() {
762
return redirectUrl != null ? redirectUrl : "http://localhost:8080/callback";
763
}
764
765
- private static final String AZURE_AUTH_ENDPOINT = "/aad/auth";
766
-
767
/**
768
* [Internal] Load the Azure tenant ID from the Azure Databricks login page. If the tenant ID is
769
* already set, this method does nothing.
@@ -774,7 +772,8 @@ public void loadAzureTenantId() {
774
772
return;
775
773
776
777
- String loginUrl = host + AZURE_AUTH_ENDPOINT;
+ final String azureAuthEndpoint = "/aad/auth";
+ String loginUrl = host + azureAuthEndpoint;
778
logger.debug("Loading tenant ID from {}", loginUrl);
779
780
try {
0 commit comments