diff options
author | Zhang Chen <chen.zhang@intel.com> | 2019-04-02 16:55:21 +0800 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2019-04-02 13:32:15 +0200 |
commit | 5cc8f9eb7a11e2c8635c2e62d7651daf9e3bff42 (patch) | |
tree | c86c12ebc87b4286deb6e966704c20f10b4d1b11 | |
parent | 966c0d49326b2d18bff0b1f36f4d44802371a412 (diff) | |
download | qemu-5cc8f9eb7a11e2c8635c2e62d7651daf9e3bff42.zip qemu-5cc8f9eb7a11e2c8635c2e62d7651daf9e3bff42.tar.gz qemu-5cc8f9eb7a11e2c8635c2e62d7651daf9e3bff42.tar.bz2 |
qapi/migration.json: Rename COLOStatus last_mode to last-mode
Signed-off-by: Zhang Chen <chen.zhang@intel.com>
Message-Id: <20190402085521.17973-1-chen.zhang@intel.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
[Commit message rephrased]
Signed-off-by: Markus Armbruster <armbru@redhat.com>
-rw-r--r-- | qapi/migration.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qapi/migration.json b/qapi/migration.json index 798c6ac..9cfbaf8 100644 --- a/qapi/migration.json +++ b/qapi/migration.json @@ -1380,7 +1380,7 @@ # @mode: COLO running mode. If COLO is running, this field will return # 'primary' or 'secondary'. # -# @last_mode: COLO last running mode. If COLO is running, this field +# @last-mode: COLO last running mode. If COLO is running, this field # will return same like mode field, after failover we can # use this field to get last colo mode. (since 4.0) # @@ -1389,7 +1389,7 @@ # Since: 3.1 ## { 'struct': 'COLOStatus', - 'data': { 'mode': 'COLOMode', 'last_mode': 'COLOMode', + 'data': { 'mode': 'COLOMode', 'last-mode': 'COLOMode', 'reason': 'COLOExitReason' } } ## |