Skip to content

Commit

Permalink
[Fix] Remove not necessary field in databricks_job schema (#3907)
Browse files Browse the repository at this point in the history
## Changes
<!-- Summary of your changes that are easy to understand -->

The `TimeoutSeconds` field was shadowing the same field in the parent
struct, but it wasn't filled, leading to the configuration drift.

Resolves #3878

## Tests
<!-- 
How is this tested? Please see the checklist below and also describe any
other relevant tests
-->

- [x] `make test` run locally
- [ ] relevant change in `docs/` folder
- [ ] covered with integration tests in `internal/acceptance`
- [ ] relevant acceptance tests are passing
- [ ] using Go SDK
  • Loading branch information
alexott authored Aug 15, 2024
1 parent 79b9377 commit e6e5d55
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion jobs/resource_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,6 @@ type JobSettingsResource struct {
DbtTask *DbtTask `json:"dbt_task,omitempty" tf:"group:task_type"`
RunJobTask *RunJobTask `json:"run_job_task,omitempty" tf:"group:task_type"`
Libraries []compute.Library `json:"libraries,omitempty" tf:"alias:library"`
TimeoutSeconds int32 `json:"timeout_seconds,omitempty"`
MaxRetries int32 `json:"max_retries,omitempty"`
MinRetryIntervalMillis int32 `json:"min_retry_interval_millis,omitempty"`
RetryOnTimeout bool `json:"retry_on_timeout,omitempty"`
Expand Down

0 comments on commit e6e5d55

Please sign in to comment.