]> git.proxmox.com Git - mirror_qemu.git/commitdiff
qapi: fix example of query-colo-status command
authorVictor Toso <victortoso@redhat.com>
Thu, 31 Mar 2022 19:06:30 +0000 (21:06 +0200)
committerMarkus Armbruster <armbru@redhat.com>
Tue, 5 Apr 2022 10:30:45 +0000 (12:30 +0200)
The example output is missing the mandatory member @last-mode in the
return value. Fix it.

Signed-off-by: Victor Toso <victortoso@redhat.com>
Message-Id: <20220331190633.121077-7-victortoso@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
qapi/migration.json

index 092a63354bd3303ce5c8efaed6659ae8fad9a8cd..f74777608a33090a6e5088325d31bb6344c28473 100644 (file)
 # Example:
 #
 # -> { "execute": "query-colo-status" }
-# <- { "return": { "mode": "primary", "reason": "request" } }
+# <- { "return": { "mode": "primary", "last-mode": "none", "reason": "request" } }
 #
 # Since: 3.1
 ##