Merge pull request #3915 from bacongobbler/fix-3881

swallow the error when returning the default HTTP client
pull/3929/head
Matthew Fisher 7 years ago committed by GitHub
commit 80bd904f1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save