fix ignore of --parallel-pool-size flag (#1705)

This commit is contained in:
Pavel Golubev
2021-08-03 23:03:23 +05:00
committed by GitHub
parent cbef84fe09
commit ebf3db4051

View File

@@ -17,7 +17,7 @@ func runProjectCmdsParallel(
var results []models.ProjectResult
mux := &sync.Mutex{}
wg := sizedwaitgroup.New(15)
wg := sizedwaitgroup.New(poolSize)
for _, pCmd := range cmds {
pCmd := pCmd
var execute func()