fix: add missing concurrency option to List
Signed-off-by: Viktor Oreshkin <imselfish@stek29.rocks>
This commit is contained in:
parent
cb780be6bd
commit
ebf0f370a1
|
|
@ -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 {
|
||||
|
|
|
|||
Loading…
Reference in New Issue