From: Victor Toso Date: Thu, 31 Mar 2022 19:06:30 +0000 (+0200) Subject: qapi: fix example of query-colo-status command X-Git-Tag: qemu-xen-4.17.0-rc4~10^2~4 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=51ec294d8ea7634a3b267701a66efdef5b23b470;p=qemu-xen.git qapi: fix example of query-colo-status command The example output is missing the mandatory member @last-mode in the return value. Fix it. Signed-off-by: Victor Toso Message-Id: <20220331190633.121077-7-victortoso@redhat.com> Reviewed-by: Markus Armbruster Signed-off-by: Markus Armbruster --- diff --git a/qapi/migration.json b/qapi/migration.json index 092a63354b..f74777608a 100644 --- a/qapi/migration.json +++ b/qapi/migration.json @@ -1679,7 +1679,7 @@ # Example: # # -> { "execute": "query-colo-status" } -# <- { "return": { "mode": "primary", "reason": "request" } } +# <- { "return": { "mode": "primary", "last-mode": "none", "reason": "request" } } # # Since: 3.1 ##