In Huawei driver, when we create volume with
prefetch configurated in xml, the prefetch value
on the array is incorrect. So fix it.
Change-Id: I69b81eec47ae7663857cfb461aba32109746dbc0
Closes-Bug: #
1549161
raise exception.InvalidInput(reason=msg)
prefetch_value = node.attrib['Value'].strip()
- factor = {'1': 2, '2': 2}
- factor = int(factor.get('prefetch_type', '1'))
+ factor = {'1': 2}
+ factor = int(factor.get(prefetch_type, '1'))
prefetch_value = int(prefetch_value) * factor
prefetch_value = six.text_type(prefetch_value)