Skip to content

Commit

Permalink
fix: remove digest check to never ignore helm errors
Browse files Browse the repository at this point in the history
Closes #1021

Signed-off-by: Chris Werner Rau <[email protected]>
  • Loading branch information
cwrau committed Aug 7, 2024
1 parent 655432b commit dbf6ede
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions internal/reconcile/uninstall.go
Original file line number Diff line number Diff line change
Expand Up @@ -138,10 +138,7 @@ func (r *Uninstall) Reconcile(ctx context.Context, req *Request) error {
// Handle any error.
if err != nil {
r.failure(req, logBuf, err)
if req.Object.Status.History.Latest().Digest == cur.Digest {
return err
}
return nil
return err
}

// Mark success.
Expand Down

0 comments on commit dbf6ede

Please sign in to comment.