[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [RFC PATCH v2 2/4] iotests: Update 245 to support replacing files wi
From: |
Kevin Wolf |
Subject: |
Re: [RFC PATCH v2 2/4] iotests: Update 245 to support replacing files with x-blockdev-reopen |
Date: |
Wed, 10 Feb 2021 18:17:24 +0100 |
Am 08.02.2021 um 19:44 hat Alberto Garcia geschrieben:
> Signed-off-by: Alberto Garcia <berto@igalia.com>
> + def test_insert_throttle_filter(self):
> + hd0_opts = hd_opts(0)
> + result = self.vm.qmp('blockdev-add', conv_keys = False, **hd0_opts)
> + self.assert_qmp(result, 'return', {})
> +
> + opts = { 'qom-type': 'throttle-group', 'id': 'group0',
> + 'props': { 'limits': { 'iops-total': 1000 } } }
Please don't add new users of 'props', it's deprecated. Instead, specify
'limits' on the top level.
Kevin