diff options
| author | John Snow <jsnow@redhat.com> | 2021-09-22 20:49:31 -0400 |
|---|---|---|
| committer | John Snow <jsnow@redhat.com> | 2021-10-12 12:22:11 -0400 |
| commit | c163c723ef92d0f629d015902396f2c67328b2e5 (patch) | |
| tree | e138f7ee8fe46f50c65829d22f2a8f261a03acd7 /python/qemu/machine/qtest.py | |
| parent | 514d00df5f44f220d0b97cc71323275067d3e60e (diff) | |
| download | focaccia-qemu-c163c723ef92d0f629d015902396f2c67328b2e5.tar.gz focaccia-qemu-c163c723ef92d0f629d015902396f2c67328b2e5.zip | |
python, iotests: remove socket_scm_helper
It's not used anymore, now. Signed-off-by: John Snow <jsnow@redhat.com> Reviewed-by: Hanna Reitz <hreitz@redhat.com> Reviewed-by: Paolo Bonzini <pbonzini@redhat.com> Message-id: 20210923004938.3999963-11-jsnow@redhat.com Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/qemu/machine/qtest.py')
| -rw-r--r-- | python/qemu/machine/qtest.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/python/qemu/machine/qtest.py b/python/qemu/machine/qtest.py index 395cc8fbfe..f2f9aaa5e5 100644 --- a/python/qemu/machine/qtest.py +++ b/python/qemu/machine/qtest.py @@ -115,7 +115,6 @@ class QEMUQtestMachine(QEMUMachine): wrapper: Sequence[str] = (), name: Optional[str] = None, base_temp_dir: str = "/var/tmp", - socket_scm_helper: Optional[str] = None, sock_dir: Optional[str] = None, qmp_timer: Optional[float] = None): # pylint: disable=too-many-arguments @@ -126,7 +125,6 @@ class QEMUQtestMachine(QEMUMachine): sock_dir = base_temp_dir super().__init__(binary, args, wrapper=wrapper, name=name, base_temp_dir=base_temp_dir, - socket_scm_helper=socket_scm_helper, sock_dir=sock_dir, qmp_timer=qmp_timer) self._qtest: Optional[QEMUQtestProtocol] = None self._qtest_path = os.path.join(sock_dir, name + "-qtest.sock") |