]> git.proxmox.com Git - mirror_qemu.git/commitdiff
python/qmp/legacy: allow using sockets for connect()
authorJohn Snow <jsnow@redhat.com>
Wed, 17 May 2023 16:34:03 +0000 (12:34 -0400)
committerJohn Snow <jsnow@redhat.com>
Wed, 31 May 2023 20:25:35 +0000 (16:25 -0400)
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>
python/qemu/qmp/legacy.py

index 8b09ee7dbb5a1df7750d0ddd32d762477fc4733d..b1eb3f360fe5983eeb59d896ba05e45e136e6885 100644 (file)
@@ -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()