diff options
author | Victor Toso <victortoso@redhat.com> | 2022-03-28 16:05:57 +0200 |
---|---|---|
committer | Markus Armbruster <armbru@redhat.com> | 2022-03-31 12:34:52 +0200 |
commit | 0df5e9a3012a51336685b373d027f8038d863725 (patch) | |
tree | 4e5b8dc2579c68d7faba4de071644b9b6f6a7d39 /qapi | |
parent | dba673b9ab06a6c657bda076d9c9f58cbbba9dd7 (diff) |
qapi: fix example of UNPLUG_PRIMARY event
Example output lacks mandatory member @timestamp. Provide it.
Example output is not properly formatted. Fixing it by:
- Adding '<-' to signalize it is receiving the data;
- Breaking lines similar to the other examples.
Signed-off-by: Victor Toso <victortoso@redhat.com>
Reviewed-by: John Snow <jsnow@redhat.com>
Message-Id: <20220328140604.41484-8-victortoso@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/migration.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qapi/migration.json b/qapi/migration.json index 18e2610e88..092a63354b 100644 --- a/qapi/migration.json +++ b/qapi/migration.json @@ -1736,7 +1736,9 @@ # Since: 4.2 # # Example: -# {"event": "UNPLUG_PRIMARY", "data": {"device-id": "hostdev0"} } +# <- { "event": "UNPLUG_PRIMARY", +# "data": { "device-id": "hostdev0" }, +# "timestamp": { "seconds": 1265044230, "microseconds": 450486 } } # ## { 'event': 'UNPLUG_PRIMARY', |