-
Notifications
You must be signed in to change notification settings - Fork 400
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
[Fix] Suppress equal fold diff for DLT pipeline resource #4196
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm, but let check for the schema
field as well
If integration tests don't run automatically, an authorized user can run them manually by following the instructions below: Trigger: Inputs:
Checks will be approved automatically on success. |
Test Details: go/deco-tests/11702135145 |
### Bug Fixes * Always fill `cluster_name` in `databricks_cluster` data source ([#4197](#4197)). * Suppress equal fold diff for DLT pipeline resource ([#4196](#4196)). * Upload content `databricks_workspace_file` using raw format ([#4200](#4200)). ### Internal Changes * Update to latest OpenAPI spec and bump Go SDK ([#4199](#4199)). ### Dependency Updates * Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 ([#4191](#4191)).
### Bug Fixes * Always fill `cluster_name` in `databricks_cluster` data source ([#4197](#4197)). * Suppress equal fold diff for DLT pipeline resource ([#4196](#4196)). * Upload content `databricks_workspace_file` using raw format ([#4200](#4200)). ### Internal Changes * Update to latest OpenAPI spec and bump Go SDK ([#4199](#4199)). ### Dependency Updates * Bump github.com/golang-jwt/jwt/v4 from 4.5.0 to 4.5.1 ([#4191](#4191)).
Changes
Fixes databricks/cli#1763. During creation the
catalog
name for a DLT pipeline is normalized to small case causing a persistent drift.Tests
Manually with the following configuration:
Before:
There'd be a persistent drift where terraform would try to convert "MaiN" -> "main"
After:
No diff detected.