[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 04/10] qapi: fix example of BLOCK_JOB_READY event
From: |
Victor Toso |
Subject: |
[PATCH v2 04/10] qapi: fix example of BLOCK_JOB_READY event |
Date: |
Thu, 1 Sep 2022 10:58:34 +0200 |
Example output is missing ',' delimiter. Fix it.
Problem was noticed when trying to load the example into python's json
library.
Signed-off-by: Victor Toso <victortoso@redhat.com>
---
qapi/block-core.json | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/qapi/block-core.json b/qapi/block-core.json
index 2173e7734a..882b266532 100644
--- a/qapi/block-core.json
+++ b/qapi/block-core.json
@@ -5252,7 +5252,7 @@
#
# <- { "event": "BLOCK_JOB_READY",
# "data": { "device": "drive0", "type": "mirror", "speed": 0,
-# "len": 2097152, "offset": 2097152 }
+# "len": 2097152, "offset": 2097152 },
# "timestamp": { "seconds": 1265044230, "microseconds": 450486 } }
#
##
--
2.37.2
- [PATCH v2 00/10] qapi examples fixes, simplified version, Victor Toso, 2022/09/01
- [PATCH v2 01/10] qapi: fix example of query-ballon command, Victor Toso, 2022/09/01
- [PATCH v2 02/10] qapi: fix example of query-vnc command, Victor Toso, 2022/09/01
- [PATCH v2 03/10] qapi: fix example of query-dump-guest-memory-capability command, Victor Toso, 2022/09/01
- [PATCH v2 04/10] qapi: fix example of BLOCK_JOB_READY event,
Victor Toso <=
- [PATCH v2 06/10] qapi: fix example of DEVICE_UNPLUG_GUEST_ERROR event, Victor Toso, 2022/09/01
- [PATCH v2 07/10] qapi: fix example of MEM_UNPLUG_ERROR event, Victor Toso, 2022/09/01
- [PATCH v2 05/10] qapi: fix example of NIC_RX_FILTER_CHANGED event, Victor Toso, 2022/09/01
- [PATCH v2 08/10] qapi: fix examples of blockdev-add with qcow2, Victor Toso, 2022/09/01
- [PATCH v2 09/10] qapi: fix example of query-hotpluggable-cpus command, Victor Toso, 2022/09/01
- [PATCH v2 10/10] qapi: fix examples of events missing timestamp, Victor Toso, 2022/09/01
- Re: [PATCH v2 00/10] qapi examples fixes, simplified version, Markus Armbruster, 2022/09/01