From 4856c721ebcb9884f786eddf3a848f2f3d6f64eb Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 31 Mar 2026 18:03:56 +0200 Subject: [PATCH 1/3] Fix grants/volumes test failure on azure-ucws The METASTORE_NAME replacement (order 0) was running before the Azure-to-S3 URL normalization replacement (also order 0). On Azure, the storage URL is abfss:// not s3://, so METASTORE_NAME found no match. By the time the Azure URL was normalized to S3, the METASTORE_NAME pass had already completed. Fix by setting Order = -1 on the Azure URL normalization so it runs before METASTORE_NAME. Task: 001.md Co-authored-by: Isaac --- acceptance/bundle/resources/grants/volumes/test.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/acceptance/bundle/resources/grants/volumes/test.toml b/acceptance/bundle/resources/grants/volumes/test.toml index 2f317814b8..e249547d38 100644 --- a/acceptance/bundle/resources/grants/volumes/test.toml +++ b/acceptance/bundle/resources/grants/volumes/test.toml @@ -1,3 +1,5 @@ [[Repls]] +# Normalize Azure storage URL to match AWS format, before METASTORE_NAME replacement. Old = 'abfss://decotestprod-unity-iso@decotestprodunityiso.dfs.core.windows.net' New = 's3://deco-uc-prod-isolated-aws-us-east-1/metastore' +Order = -1 From 7da39609d722bdbd5135af2f2f3a74ac444f6b9d Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 31 Mar 2026 20:43:11 +0200 Subject: [PATCH 2/3] Add PR #4880 to NEXT_CHANGELOG.md Co-authored-by: Isaac --- NEXT_CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index 55159800e5..796b3d2c22 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -14,6 +14,7 @@ * engine/direct: Fix unwanted recreation of secret scopes when scope_backend_type is not set ([#4834](https://github.com/databricks/cli/pull/4834)) * engine/direct: Fix bind and unbind for non-Terraform resources ([#4850](https://github.com/databricks/cli/pull/4850)) * engine/direct: Fix deploying removed principals ([#4824](https://github.com/databricks/cli/pull/4824)) +* Fix grants/volumes test failure on azure-ucws ([#4880](https://github.com/databricks/cli/pull/4880)) ### Dependency updates From 6a8018828a94d7f0c0d19ab2c3fd03a71ae78b1d Mon Sep 17 00:00:00 2001 From: Denis Bilenko Date: Tue, 31 Mar 2026 20:44:22 +0200 Subject: [PATCH 3/3] Revert "Add PR #4880 to NEXT_CHANGELOG.md" This reverts commit 7da39609d722bdbd5135af2f2f3a74ac444f6b9d. --- NEXT_CHANGELOG.md | 1 - 1 file changed, 1 deletion(-) diff --git a/NEXT_CHANGELOG.md b/NEXT_CHANGELOG.md index 796b3d2c22..55159800e5 100644 --- a/NEXT_CHANGELOG.md +++ b/NEXT_CHANGELOG.md @@ -14,7 +14,6 @@ * engine/direct: Fix unwanted recreation of secret scopes when scope_backend_type is not set ([#4834](https://github.com/databricks/cli/pull/4834)) * engine/direct: Fix bind and unbind for non-Terraform resources ([#4850](https://github.com/databricks/cli/pull/4850)) * engine/direct: Fix deploying removed principals ([#4824](https://github.com/databricks/cli/pull/4824)) -* Fix grants/volumes test failure on azure-ucws ([#4880](https://github.com/databricks/cli/pull/4880)) ### Dependency updates