Skip to content

Commit

Permalink
Merge pull request #10 from theMagicalKarp/early_exit
Browse files Browse the repository at this point in the history
Don't exit app if one job cannot be found
  • Loading branch information
theMagicalKarp authored Apr 2, 2019
2 parents 0a6d7b5 + da63757 commit 9a34da1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func main() {
err = jobClient.Delete(job.ObjectMeta.Name, deletionOptions)

if err != nil {
log.Fatal(err.Error())
log.Warnf(err.Error())
}
}
}

0 comments on commit 9a34da1

Please sign in to comment.