Fix undefined variable: RLIMIT_NOFILE
authorBrian Dolbec <dolsen@gentoo.org>
Mon, 14 Jan 2013 03:32:29 +0000 (19:32 -0800)
committerW. Trevor King <wking@tremily.us>
Sun, 15 Dec 2013 04:25:05 +0000 (20:25 -0800)
It was not imported from resource, it was also not used correctly.

catalyst/support.py

index 21337996ef7b9035b5db6a9857590c7228c1473b..072b9850d98a2e3a51c432c5d30ea331adf852dc 100644 (file)
@@ -6,14 +6,16 @@ selinux_capable = False
 #fakeroot_capable = False
 BASH_BINARY             = "/bin/bash"
 
+# set it to 0 for the soft limit, 1 for the hard limit
+DESIRED_RLIMIT = 0
 try:
-        import resource
-        max_fd_limit=resource.getrlimit(RLIMIT_NOFILE)
+       import resource
+       max_fd_limit=resource.getrlimit(resource.RLIMIT_NOFILE)[DESIRED_RLIMIT]
 except SystemExit, e:
-        raise
+       raise
 except:
-        # hokay, no resource module.
-        max_fd_limit=256
+       # hokay, no resource module.
+       max_fd_limit=256
 
 # pids this process knows of.
 spawned_pids = []