operator/runner: improved dropped error fix

This commit is contained in:
Lars Lehtonen 2019-09-16 09:30:16 -07:00
parent 43e0fd2f1e
commit e4329477bc

View file

@ -204,7 +204,7 @@ func (r *Runner) Run(ctx context.Context, id int64) error {
return env
})
if err != nil {
return err
return r.handleError(ctx, m.Stage, err)
}
manifest, err := yaml.ParseString(y)