commands: Adjust rlimit to 64000

See #3582
This commit is contained in:
Bjørn Erik Pedersen 2017-06-12 20:43:19 +02:00
parent 629e1439e8
commit ff54b6bddc
1 changed files with 2 additions and 2 deletions

View File

@ -75,8 +75,8 @@ func tweakLimit() {
jww.ERROR.Println("Unable to obtain rLimit", err)
}
if rLimit.Cur < rLimit.Max {
rLimit.Max = 10000
rLimit.Cur = 10000
rLimit.Max = 64000
rLimit.Cur = 64000
err = syscall.Setrlimit(syscall.RLIMIT_NOFILE, &rLimit)
if err != nil {
jww.WARN.Println("Unable to increase number of open files limit", err)