diff --git a/cinder/volume/drivers/huawei/huawei_conf.py b/cinder/volume/drivers/huawei/huawei_conf.py index f4781dee5..94ded9796 100644 --- a/cinder/volume/drivers/huawei/huawei_conf.py +++ b/cinder/volume/drivers/huawei/huawei_conf.py @@ -197,8 +197,8 @@ class HuaweiConf(object): 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)