Skip to content

Commit

Permalink
fix: executions does not return success field for unsuccessful execut…
Browse files Browse the repository at this point in the history
…ions
  • Loading branch information
Victor Castell committed Nov 14, 2019
1 parent c8f6e3e commit 91eacb5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dkron/execution.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type Execution struct {
FinishedAt time.Time `json:"finished_at,omitempty"`

// If this execution executed succesfully.
Success bool `json:"success,omitempty"`
Success bool `json:"success"`

// Partial output of the execution.
Output []byte `json:"output,omitempty"`
Expand Down

0 comments on commit 91eacb5

Please sign in to comment.