fix(install): log the error when recording the release

Signed-off-by: Matthew Fisher <matt.fisher@microsoft.com>
pull/6946/head
Matthew Fisher 6 years ago
parent eba3ee01df
commit e91feed1a3
No known key found for this signature in database
GPG Key ID: 92AA783CBAAE8E3B

@ -301,7 +301,9 @@ func (i *Install) Run(chrt *chart.Chart, vals map[string]interface{}) (*release.
//
// One possible strategy would be to do a timed retry to see if we can get
// this stored in the future.
i.recordRelease(rel)
if err := i.recordRelease(rel); err != nil {
i.cfg.Log("failed to record the release: %s", err)
}
return rel, nil
}

Loading…
Cancel
Save