From eb1674ffdbb6ebf89bfc74b3ccb0a5900c0e607e Mon Sep 17 00:00:00 2001 From: Andrew Sikowitz Date: Mon, 1 May 2023 17:47:44 -0400 Subject: [PATCH] fix(ingest/unity-catalog): Add usage_common dependency to unity catalog plugin (#7935) --- metadata-ingestion/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/metadata-ingestion/setup.py b/metadata-ingestion/setup.py index 8def36a2ef..c596030de5 100644 --- a/metadata-ingestion/setup.py +++ b/metadata-ingestion/setup.py @@ -368,7 +368,7 @@ plugins: Dict[str, Set[str]] = { "powerbi": microsoft_common | {"lark[regex]==1.1.4", "sqlparse"}, "powerbi-report-server": powerbi_report_server, "vertica": sql_common | {"vertica-sqlalchemy-dialect[vertica-python]==0.0.1"}, - "unity-catalog": databricks_cli | {"requests"}, + "unity-catalog": databricks_cli | {"requests"} | usage_common, } # This is mainly used to exclude plugins from the Docker image.