diff options
| author | Farooq Mela | 2015-03-12 14:52:13 -0700 |
|---|---|---|
| committer | Mike McQuaid | 2015-03-13 10:56:18 +0000 |
| commit | 058e57ffb11acfa5432c73ac55807ec30ba35b50 (patch) | |
| tree | b1a1471d7eb49d8ef4f98e14627be6d09809c90b | |
| parent | be760a530c62451c662018a9f0122900cb035e31 (diff) | |
| download | homebrew-058e57ffb11acfa5432c73ac55807ec30ba35b50.tar.bz2 | |
mongodb: increase plist open files limit.
Increase the hard and soft limit of the maximum number of open files to 65536.
Closes #37655.
Closes #37656.
Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
| -rw-r--r-- | Library/Formula/mongodb.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/mongodb.rb b/Library/Formula/mongodb.rb index c6e751fb6..1c001b74f 100644 --- a/Library/Formula/mongodb.rb +++ b/Library/Formula/mongodb.rb @@ -114,12 +114,12 @@ class Mongodb < Formula <key>HardResourceLimits</key> <dict> <key>NumberOfFiles</key> - <integer>1024</integer> + <integer>65536</integer> </dict> <key>SoftResourceLimits</key> <dict> <key>NumberOfFiles</key> - <integer>1024</integer> + <integer>65536</integer> </dict> </dict> </plist> |
