fix: add missing concurrency option to List

Signed-off-by: Viktor Oreshkin <imselfish@stek29.rocks>
This commit is contained in:
Viktor Oreshkin 2022-09-06 09:43:46 +03:00
parent cb780be6bd
commit ebf0f370a1
1 changed files with 3 additions and 2 deletions

View File

@ -552,8 +552,9 @@ func (a *App) ListReleases(c ListConfigProvider) error {
if c.WithPreparedCharts() {
err = run.withPreparedCharts("list", state.ChartPrepareOptions{
SkipRepos: true,
SkipDeps: true,
SkipRepos: true,
SkipDeps: true,
Concurrency: 2,
}, func() {
rel, err := a.list(run)
if err != nil {