Skip to content
Snippets Groups Projects
Commit b8d4ca18 authored by John Snow's avatar John Snow
Browse files

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: default avatarJohn Snow <jsnow@redhat.com>
Message-id: 20230517163406.2593480-3-jsnow@redhat.com
Signed-off-by: default avatarJohn Snow <jsnow@redhat.com>
parent 9341b2a6
No related branches found
No related tags found
No related merge requests found
......@@ -150,12 +150,13 @@ def connect(self, negotiate: bool = True) -> Optional[QMPMessage]:
: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()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment