Skip to content

Commit

Permalink
fix: job success false positive
Browse files Browse the repository at this point in the history
  • Loading branch information
devthejo committed Dec 18, 2022
1 parent f3d88e2 commit 93860ca
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/status/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,8 @@ func JobStatus(wrapper client.Kubernetes, job *batchv1.Job, options *config.Opti
if status.Error != nil {
if status.MaybeContinue {
aggr.Add(RolloutErrorProgressing(status.Error))
} else {
aggr.Add(status)
}
} else {
err := errors.New("")
Expand Down

0 comments on commit 93860ca

Please sign in to comment.