You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
When running databricks sdk on azure workspaces using databricks cli authentication. The config.is_aws flag is set to True.
This occurs when the databricks profile host doesn't have https:// in the beginning and a trailing "/" at the end for a azure workspace
Reproduction
Create a databricks profile like below:
azure workspace url
host = adb-/
auth_type = databricks-cli
## Changes
<!-- Summary of your changes that are easy to understand -->
Added a check for trailing slash in the host url. Fixes (#661)
## Tests
<!--
How is this tested? Please see the checklist below and also describe any
other relevant tests
-->
- [ ] `make test` run locally
- [ ] `make fmt` applied
- [ ] relevant integration tests applied
---------
Signed-off-by: Parth Bansal <parth.bansal@databricks.com>
Description
When running databricks sdk on azure workspaces using databricks cli authentication. The config.is_aws flag is set to True.
This occurs when the databricks profile host doesn't have https:// in the beginning and a trailing "/" at the end for a azure workspace
Reproduction
Create a databricks profile like below:
azure workspace url
host = adb-/
auth_type = databricks-cli
run code :
ws = WorkspaceClient(auth_type = "databricks-cli", profile="PROFILE_NAME")
assert ws.config.is_azure
Expected behaviour
ws.config.is_azure should be set to True and ws.config.is_aws should be set to False
Is it a regression?
Dont know
Other Information
Additional context
Add any other context about the problem here.
related ucx issue
databrickslabs/ucx#1757
The text was updated successfully, but these errors were encountered: