From 17e47f2fcbec767b5fdbc428a0b1f073dd1cf619 Mon Sep 17 00:00:00 2001 From: Megh Bhatt Date: Mon, 23 May 2016 15:25:29 -0700 Subject: [PATCH] Increase system wide fd limit for controller to 165k Change-Id: I8f1e837ddfdb5f68e9f4658c9309ffc816562696 Closes-Bug: #1582100 --- fabfile/tasks/helpers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fabfile/tasks/helpers.py b/fabfile/tasks/helpers.py index 9313c8365..c846415a4 100644 --- a/fabfile/tasks/helpers.py +++ b/fabfile/tasks/helpers.py @@ -1074,7 +1074,7 @@ def increase_limits_node(*args): sysctl_conf = '/etc/sysctl.conf' insert_line_to_file(pattern = '^fs.file-max.*', - line = 'fs.file-max = 65535',file_name = sysctl_conf) + line = 'fs.file-max = 165535',file_name = sysctl_conf) sudo('sysctl -p') #end increase_limits_node