Skip to content

Commit

Permalink
Merge branch 'main' of github.com:databricks/terraform-provider-datab…
Browse files Browse the repository at this point in the history
…ricks into prepare/1.35.1
  • Loading branch information
tanmay-db committed Feb 5, 2024
2 parents f4d8062 + 662a0bd commit 28d1993
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion jobs/resource_job.go
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ type GitSource struct {
type JobHealthRule struct {
Metric string `json:"metric,omitempty"`
Operation string `json:"op,omitempty"`
Value int32 `json:"value,omitempty"`
Value int64 `json:"value,omitempty"`
}

type JobHealth struct {
Expand Down
4 changes: 2 additions & 2 deletions jobs/resource_job_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ func TestResourceJobCreate_MultiTask(t *testing.T) {
{
Metric: "RUN_DURATION_SECONDS",
Operation: "GREATER_THAN",
Value: 3600,
Value: 50000000000, // 5 * 10^10
},
},
},
Expand Down Expand Up @@ -260,7 +260,7 @@ func TestResourceJobCreate_MultiTask(t *testing.T) {
rules {
metric = "RUN_DURATION_SECONDS"
op = "GREATER_THAN"
value = 3600
value = 50000000000
}
}
Expand Down

0 comments on commit 28d1993

Please sign in to comment.