From b9878bd912ffc18a9addd373ec8c78f81f6baf84 Mon Sep 17 00:00:00 2001 From: Da Yin Date: Tue, 25 Jun 2019 20:11:45 +0800 Subject: [PATCH] Redo the same fix with #3915 in dev-v3 branch Signed-off-by: Da Yin --- 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 cc0302341..be82e5da0 100644 --- a/pkg/downloader/chart_downloader.go +++ b/pkg/downloader/chart_downloader.go @@ -176,7 +176,7 @@ func (c *ChartDownloader) ResolveChartVersion(ref, version string) (*url.URL, ge r := &repo.ChartRepository{} r.Client = g g.SetBasicAuth(c.getRepoCredentials(r)) - return u, g, err + return u, g, nil } return u, nil, err }