Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed crawl_permissions task to respect 'workspace_start_path' config #444

Merged
merged 1 commit into from
Oct 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ hatch env create

To install development dependencies, including testing and database connection packages, use the following command:
```shell
hatch run pip install -e '.[test,dbconnect]'
hatch run pip install -e '.[test]'
```

To ensure your integrated development environment (IDE) uses the newly created virtual environment, you can retrieve the Python path with this command:
Expand Down
1 change: 1 addition & 0 deletions src/databricks/labs/ucx/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -224,6 +224,7 @@ def from_dict(cls, raw: dict):
log_level=raw.get("log_level", "INFO"),
database_to_catalog_mapping=raw.get("database_to_catalog_mapping", None),
default_catalog=raw.get("default_catalog", "main"),
workspace_start_path=raw.get("workspace_start_path", "/")
)

def to_workspace_client(self) -> WorkspaceClient:
Expand Down
Loading