swallow the error when returning the default HTTP client

pull/4207/head^2
Matthew Fisher 8 years ago committed by Sebastien Plisson
parent 474f261ea1
commit aab3fb1bdb

@ -183,7 +183,7 @@ func (c *ChartDownloader) ResolveChartVersionAndGetRepo(ref, version string) (*u
r := &repo.ChartRepository{} r := &repo.ChartRepository{}
r.Client = g r.Client = g
g.SetCredentials(c.getRepoCredentials(r)) g.SetCredentials(c.getRepoCredentials(r))
return u, r, g, err return u, r, g, nil
} }
return u, nil, nil, err return u, nil, nil, err
} }

Loading…
Cancel
Save