diff options
author | Rao, Lei <lei.rao@intel.com> | 2021-11-22 15:49:46 +0800 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2021-11-22 15:02:38 +0100 |
commit | 8f75cae2dda8a55eb3a6c712bd22b18a90c0a5ac (patch) | |
tree | aaa68974a54589d5e224aad5314322d4ad9674d0 /docs/throttle.txt | |
parent | b980c1aec63908074040e5cab135728e3b5db117 (diff) |
docs: Drop deprecated 'props' from object-add
In commit 5024340745 "qapi/qom: Drop deprecated 'props' from
object-add" (v6.0.0), we also should update documents.
Signed-off-by: Lei Rao <lei.rao@intel.com>
Message-Id: <1637567387-28250-1-git-send-email-lei.rao@intel.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'docs/throttle.txt')
-rw-r--r-- | docs/throttle.txt | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/docs/throttle.txt b/docs/throttle.txt index b5b78b7326..0a0453a5ee 100644 --- a/docs/throttle.txt +++ b/docs/throttle.txt @@ -273,11 +273,9 @@ A group can be created using the object-add QMP function: "arguments": { "qom-type": "throttle-group", "id": "group0", - "props": { - "limits" : { - "iops-total": 1000 - "bps-write": 2097152 - } + "limits" : { + "iops-total": 1000, + "bps-write": 2097152 } } } |