Merge pull request from bacongobbler/fix-6939

fix(install): log the error when recording the release
pull/7066/head
Matthew Fisher 5 years ago committed by GitHub
commit 456eb7f411
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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