Skip to content

Commit

Permalink
fix ignore of --parallel-pool-size flag (#1705)
Browse files Browse the repository at this point in the history
  • Loading branch information
Schtolc authored and msarvar committed Sep 27, 2021
1 parent 202b370 commit 3799f30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/events/project_command_pool_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 3799f30

Please sign in to comment.