From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:34605) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1hBJ2c-0005dr-Da for qemu-devel@nongnu.org; Tue, 02 Apr 2019 09:01:27 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hBJ2W-0001PE-QA for qemu-devel@nongnu.org; Tue, 02 Apr 2019 09:01:26 -0400 Received: from mx1.redhat.com ([209.132.183.28]:44470) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hBJ2V-0001NJ-TP for qemu-devel@nongnu.org; Tue, 02 Apr 2019 09:01:20 -0400 From: Markus Armbruster Date: Tue, 2 Apr 2019 15:01:07 +0200 Message-Id: <20190402130112.15142-4-armbru@redhat.com> In-Reply-To: <20190402130112.15142-1-armbru@redhat.com> References: <20190402130112.15142-1-armbru@redhat.com> Subject: [Qemu-devel] [PULL 3/8] qapi/migration.json: Rename COLOStatus last_mode to last-mode List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Zhang Chen From: Zhang Chen Signed-off-by: Zhang Chen Message-Id: <20190402085521.17973-1-chen.zhang@intel.com> Reviewed-by: Markus Armbruster [Commit message rephrased] Signed-off-by: Markus Armbruster --- qapi/migration.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qapi/migration.json b/qapi/migration.json index 798c6ac2df..9cfbaf8c6c 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' } } ## -- 2.17.2