Skip to content

Commit

Permalink
python/machine: use subprocess.run instead of subprocess.Popen
Browse files Browse the repository at this point in the history
use run() instead of Popen() -- to assert to pylint that we are not
forgetting to close a long-running program.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Tested-by: Cleber Rosa <crosa@redhat.com>
Message-id: 20210527211715.394144-4-jsnow@redhat.com
Message-id: 20210517184808.3562549-4-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
  • Loading branch information
jnsnow committed Jun 1, 2021
1 parent 07b7123 commit 14b4179
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions python/qemu/machine.py
Expand Up @@ -223,13 +223,16 @@ def send_fd_scm(self, fd: Optional[int] = None,
assert fd is not None
fd_param.append(str(fd))

proc = subprocess.Popen(
fd_param, stdin=subprocess.DEVNULL, stdout=subprocess.PIPE,
stderr=subprocess.STDOUT, close_fds=False
proc = subprocess.run(
fd_param,
stdin=subprocess.DEVNULL,
stdout=subprocess.PIPE,
stderr=subprocess.STDOUT,
check=False,
close_fds=False,
)
output = proc.communicate()[0]
if output:
LOG.debug(output)
if proc.stdout:
LOG.debug(proc.stdout)

return proc.returncode

Expand Down

0 comments on commit 14b4179

Please sign in to comment.