From aa2976f0cea3b80278c07c31ffc40072ff81b289 Mon Sep 17 00:00:00 2001 From: Matthew Fisher Date: Tue, 17 Apr 2018 16:36:50 -0700 Subject: [PATCH] swallow the error when returning the default HTTP client --- pkg/downloader/chart_downloader.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/downloader/chart_downloader.go b/pkg/downloader/chart_downloader.go index fe2f3ce92..8b386fc09 100644 --- a/pkg/downloader/chart_downloader.go +++ b/pkg/downloader/chart_downloader.go @@ -183,7 +183,7 @@ func (c *ChartDownloader) ResolveChartVersionAndGetRepo(ref, version string) (*u r := &repo.ChartRepository{} r.Client = g g.SetCredentials(c.getRepoCredentials(r)) - return u, r, g, err + return u, r, g, nil } return u, nil, nil, err }