Fix incorrect access to MIN_IOPS variable in DecortController.disk_check_iotune_arg method

rc-5.3.0^2
Dmitriy Smirnov 9 months ago
parent 877b84d650
commit df619e7998

@ -2755,7 +2755,7 @@ class DecortController(object):
"write_iops_sec_max", "write_iops_sec_max",
"size_iops_sec", "size_iops_sec",
): ):
if val and val < self.MIN_IOPS: if val and val < MIN_IOPS:
self.result['msg'] = (f"{arg} was set below the minimum iops {MIN_IOPS}: {val} provided") self.result['msg'] = (f"{arg} was set below the minimum iops {MIN_IOPS}: {val} provided")
return return

Loading…
Cancel
Save