~free.ekanayaka/landscape-client/lucid-1.5.4-0ubuntu0.10.04.0

« back to all changes in this revision

Viewing changes to landscape/lib/fd.py

  • Committer: Bazaar Package Importer
  • Author(s): Free Ekanayaka
  • Date: 2010-06-28 18:07:18 UTC
  • mfrom: (1.2.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100628180718-vytyqgbtkiirv5sb
Tags: 1.5.2.1-0ubuntu0.10.04.0
Filter duplicate network interfaces in get_active_interfaces (LP: #597000)

Show diffs side-by-side

added added

removed removed

Lines of Context:
16
16
    unwanted file descriptors from the invoking process.  Unfortunately, this
17
17
    is really common in unix!
18
18
    """
19
 
    total_descriptors = min(4096, resource.getrlimit(resource.RLIMIT_NOFILE)[1])
 
19
    rlimit_nofile = resource.getrlimit(resource.RLIMIT_NOFILE)[1]
 
20
    total_descriptors = min(4096, rlimit_nofile)
20
21
    for fd in range(3, total_descriptors):
21
22
        try:
22
23
            os.close(fd)
23
 
        except OSError, e:
 
24
        except OSError:
24
25
            pass