diff options
author | John Snow <jsnow@redhat.com> | 2023-05-17 12:34:03 -0400 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2023-05-31 16:25:35 -0400 |
commit | b8d4ca18233dbd7c215c67b00fd3eb7887cf2b82 (patch) | |
tree | dda01e77b54dd707ce828589bec570e36f370f19 /python/qemu/qmp | |
parent | 9341b2a6b99bd4ba6516cc5d69fc3424dcf7023c (diff) | |
download | qemu-b8d4ca18233dbd7c215c67b00fd3eb7887cf2b82.zip qemu-b8d4ca18233dbd7c215c67b00fd3eb7887cf2b82.tar.gz qemu-b8d4ca18233dbd7c215c67b00fd3eb7887cf2b82.tar.bz2 |
python/qmp/legacy: allow using sockets for connect()
Instead of asserting that we have an address, allow the use of sockets
instead of addresses during a call to connect().
Signed-off-by: John Snow <jsnow@redhat.com>
Message-id: 20230517163406.2593480-3-jsnow@redhat.com
Signed-off-by: John Snow <jsnow@redhat.com>
Diffstat (limited to 'python/qemu/qmp')
-rw-r--r-- | python/qemu/qmp/legacy.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/python/qemu/qmp/legacy.py b/python/qemu/qmp/legacy.py index 8b09ee7..b1eb3f3 100644 --- a/python/qemu/qmp/legacy.py +++ b/python/qemu/qmp/legacy.py @@ -150,12 +150,13 @@ class QEMUMonitorProtocol: :return: QMP greeting dict, or None if negotiate is false :raise ConnectError: on connection errors """ - assert self._address is not None + addr_or_sock = self._address or self._sock + assert addr_or_sock is not None self._qmp.await_greeting = negotiate self._qmp.negotiate = negotiate self._sync( - self._qmp.connect(self._address) + self._qmp.connect(addr_or_sock) ) return self._get_greeting() |