Skip to content

Commit

Permalink
Add missing nullable constraints on uuid and jobUuid properties.
Browse files Browse the repository at this point in the history
  • Loading branch information
ahormazabal committed Mar 18, 2024
1 parent 49a3978 commit 044495c
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions rundeckapp/grails-app/domain/rundeck/Execution.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ class Execution extends ExecutionContext implements EmbeddedJsonData, ExecutionD
retryOriginalId(nullable: true)
retryPrevId(nullable: true)
extraMetadata(nullable: true)
uuid(nullable: true)
jobUuid(nullable: true)
}

static mapping = {
Expand Down

0 comments on commit 044495c

Please sign in to comment.