summaryrefslogtreecommitdiff
path: root/qapi/migration.json
diff options
context:
space:
mode:
authorVictor Toso <victortoso@redhat.com>2022-03-31 21:06:30 +0200
committerMarkus Armbruster <armbru@redhat.com>2022-04-05 12:30:45 +0200
commit51ec294d8ea7634a3b267701a66efdef5b23b470 (patch)
treec8ecc785b1c10699a8a6ab6c697182f2284a8e3f /qapi/migration.json
parentc7f4a0fc785b69f0a87f79d2eb87c480aad44855 (diff)
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 <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>
Diffstat (limited to 'qapi/migration.json')
-rw-r--r--qapi/migration.json2
1 files changed, 1 insertions, 1 deletions
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
##