From ebf0f370a18debc9e942b902ba8ac8aaacc16051 Mon Sep 17 00:00:00 2001 From: Viktor Oreshkin Date: Tue, 6 Sep 2022 09:43:46 +0300 Subject: [PATCH] fix: add missing concurrency option to List Signed-off-by: Viktor Oreshkin --- pkg/app/app.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkg/app/app.go b/pkg/app/app.go index 7070c2f9..4bdf4a39 100644 --- a/pkg/app/app.go +++ b/pkg/app/app.go @@ -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 {