Browse Source

Increase default max concurrency

renovate/configure
Yota Toyama 8 years ago
parent
commit
a24ea5b81c
  1. 2
      arguments.go

2
arguments.go

@ -10,7 +10,7 @@ import (
)
var defaultConcurrency = func() int {
const max = 256
const max = 512 // Max number of open files is limited to 1024 on Linux.
n := 8 * runtime.NumCPU() // 8 is an empirical value.
if n < max {

Loading…
Cancel
Save