diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2016-06-23 13:24:40 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2017-01-16 09:15:28 +0100 |
commit | dbdbddb96e55da26a503cfa107689b77f7d65dd9 (patch) | |
tree | 286f345dc12794d9f71a977284b2de497d73c6f6 /qapi-schema.json | |
parent | b3ac5a0de9b88454e42d0ee2755cc1083ccc25bb (diff) |
qmp-commands: move 'migrate-incoming' doc to schema
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi-schema.json')
-rw-r--r-- | qapi-schema.json | 21 |
1 files changed, 18 insertions, 3 deletions
diff --git a/qapi-schema.json b/qapi-schema.json index ef27197460..f021cd0dfc 100644 --- a/qapi-schema.json +++ b/qapi-schema.json @@ -3005,9 +3005,24 @@ # Returns: nothing on success # # Since: 2.3 -# Note: It's a bad idea to use a string for the uri, but it needs to stay -# compatible with -incoming and the format of the uri is already exposed -# above libvirt +# +# Notes: +# +# 1. It's a bad idea to use a string for the uri, but it needs to stay +# compatible with -incoming and the format of the uri is already exposed +# above libvirt. +# +# 2. QEMU must be started with -incoming defer to allow migrate-incoming to +# be used. +# +# 3. The uri format is the same as for -incoming +# +# Example: +# +# -> { "execute": "migrate-incoming", +# "arguments": { "uri": "tcp::4446" } } +# <- { "return": {} } +# ## { 'command': 'migrate-incoming', 'data': {'uri': 'str' } } |