Fix compatibility with python 3.7

This commit is contained in:
Benjamin Renard 2022-12-15 18:41:01 +01:00
parent 7e6ae28c54
commit d78166f699

View file

@ -185,8 +185,8 @@ ceph_cmd.append('status')
ceph_cmd.append('--format=json')
# exec command
with subprocess.Popen(ceph_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE) as p:
output, err = p.communicate()
p = subprocess.Popen(ceph_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
output, err = p.communicate()
if not output:
print("UNKNOWN : fail to execute ceph status command")