-
Notifications
You must be signed in to change notification settings - Fork 57
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
Bump github.com/databricks/databricks-sdk-go from 0.37.0 to 0.38.0 #1361
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
e316cc3d78d087522a74650e26586088da9ac8cb | ||
94684175b8bd65f8701f89729351f8069e8309c9 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,10 +28,10 @@ func overrideJobCompute(j *resources.Job, compute string) { | |
task = &task.ForEachTask.Task | ||
} | ||
|
||
if task.NewCluster != nil || task.ExistingClusterId != "" || task.ComputeKey != "" || task.JobClusterKey != "" { | ||
if task.NewCluster != nil || task.ExistingClusterId != "" || task.EnvironmentKey != "" || task.JobClusterKey != "" { | ||
task.NewCluster = nil | ||
task.JobClusterKey = "" | ||
task.ComputeKey = "" | ||
task.EnvironmentKey = "" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This rename / deprecation happened on SDK side which is potentially a breaking change on CLI / DABs side as well There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ComputeKey was in private preview and deprecated in favour of EnvironmentKey so safe to make the change |
||
task.ExistingClusterId = compute | ||
} | ||
} | ||
|
Large diffs are not rendered by default.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
temporarily disabled until resolved on SDK side (need to store Request reference in NamedIdMap so the correct request type is used in request later)