Fix undefined variable: RLIMIT_NOFILE
authorBrian Dolbec <dolsen@gentoo.org>
Mon, 14 Jan 2013 03:32:29 +0000 (19:32 -0800)
committerBrian Dolbec <dolsen@gentoo.org>
Wed, 2 Apr 2014 20:04:23 +0000 (13:04 -0700)
It was not imported from resource, it was also not used correctly.

catalyst/support.py

index e25394eb7d416fd9be4d8555a526785e6c97d200..5abf614f79ee1e60d7bce92b45a200e2e77be4c0 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 = []