diff options
author | John Snow <jsnow@redhat.com> | 2022-01-10 18:28:53 -0500 |
---|---|---|
committer | John Snow <jsnow@redhat.com> | 2022-01-21 16:01:31 -0500 |
commit | f3efd12930f34b9724e15d8fd2ff56a97b67219d (patch) | |
tree | 5491985ccac71a1e9767febc2cd098b9a656fb8a /python/qemu/aqmp/legacy.py | |
parent | 8d6cdc5118e8c7d71ccb716ded2a618e6f78a295 (diff) | |
download | qemu-f3efd12930f34b9724e15d8fd2ff56a97b67219d.zip qemu-f3efd12930f34b9724e15d8fd2ff56a97b67219d.tar.gz qemu-f3efd12930f34b9724e15d8fd2ff56a97b67219d.tar.bz2 |
python/qmp: switch qmp-shell to AQMP
We have a replacement for async QMP, but it doesn't have feature parity
yet. For now, then, port the old tool onto the new backend.
Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
Diffstat (limited to 'python/qemu/aqmp/legacy.py')
-rw-r--r-- | python/qemu/aqmp/legacy.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/qemu/aqmp/legacy.py b/python/qemu/aqmp/legacy.py index 27df228..0890f95 100644 --- a/python/qemu/aqmp/legacy.py +++ b/python/qemu/aqmp/legacy.py @@ -22,6 +22,9 @@ from .protocol import Runstate, SocketAddrT from .qmp_client import QMPClient +# (Temporarily) Re-export QMPBadPortError +QMPBadPortError = qemu.qmp.QMPBadPortError + #: QMPMessage is an entire QMP message of any kind. QMPMessage = Dict[str, Any] |