From: Bjørn Erik Pedersen Date: Mon, 12 Jun 2017 18:43:19 +0000 (+0200) Subject: commands: Adjust rlimit to 64000 X-Git-Tag: v0.22.1~5 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=ff54b6bd;p=brevno-suite%2Fhugo commands: Adjust rlimit to 64000 See #3582 --- diff --git a/commands/limit_darwin.go b/commands/limit_darwin.go index 1635c847..9246f449 100644 --- a/commands/limit_darwin.go +++ b/commands/limit_darwin.go @@ -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)