Skip to content

Commit

Permalink
job/job: Indicate that job finished with errors
Browse files Browse the repository at this point in the history
Signed-off-by: Alexander Jung <a.jung@lancs.ac.uk>
  • Loading branch information
nderjung committed Jan 7, 2021
1 parent 4e768a6 commit 73787e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion job/job.go
Original file line number Diff line number Diff line change
Expand Up @@ -532,7 +532,7 @@ func (j *Job) Start() error {
if timeElapsed > 0 {
log.Successf("Run %s finished in %s", activeTaskRun.UUID(), timeElapsed)
} else {
log.Errorf("Run %s finished", activeTaskRun.UUID())
log.Errorf("Run %s finished with errors", activeTaskRun.UUID())
}
wg.Done() // We're done here

Expand Down

0 comments on commit 73787e4

Please sign in to comment.