Make lock optional in the JSON schema (#1738)

Fixes https://github.com/databricks/cli/issues/1561
This commit is contained in:
shreyas-goenka 2024-09-02 14:09:08 +05:30 committed by GitHub
parent 70ce802518
commit 5d9910c8e0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -6,5 +6,5 @@ type Deployment struct {
FailOnActiveRuns bool `json:"fail_on_active_runs,omitempty"`
// Lock configures locking behavior on deployment.
Lock Lock `json:"lock"`
Lock Lock `json:"lock,omitempty"`
}