diff options
author | Bjørn Erik Pedersen <[email protected]> | 2017-06-12 20:43:19 +0200 |
---|---|---|
committer | Bjørn Erik Pedersen <[email protected]> | 2017-06-12 20:43:19 +0200 |
commit | ff54b6bddcefab45339d8dc2b13776b92bdc04b9 (patch) | |
tree | b5054c04d88b4008567ff73ef86dbbf17dfdada0 | |
parent | 629e1439e819a7118ae483381d4634f16d3474dd (diff) | |
download | hugo-ff54b6bddcefab45339d8dc2b13776b92bdc04b9.tar.gz hugo-ff54b6bddcefab45339d8dc2b13776b92bdc04b9.zip |
commands: Adjust rlimit to 64000
See #3582
-rw-r--r-- | commands/limit_darwin.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/limit_darwin.go b/commands/limit_darwin.go index 1635c8471..9246f4497 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) |