Am 08.02.2021 um 19:44 hat Alberto Garcia geschrieben:
> Signed-off-by: Alberto Garcia <[email protected]>
> + 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