Commit 8be77160 by Toshio Kuratomi Committed by James Cammarata

Close some file handles explicitly in facts.py

Helps control open file descriptor count with pypy (which is used with
one coreos + ansible example).  Part of a fix for
https://github.com/ansible/ansible/issues/10157
parent 0af7e212
......@@ -2381,9 +2381,13 @@ class SunOSVirtual(Virtual):
def get_file_content(path, default=None):
data = default
if os.path.exists(path) and os.access(path, os.R_OK):
data = open(path).read().strip()
if len(data) == 0:
data = default
try:
datafile = open(path)
data = datafile.read().strip()
if len(data) == 0:
data = default
finally:
datafile.close()
return data
def ansible_facts(module):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment