diff --git a/cinder/tests/unit/volume/drivers/test_pure.py b/cinder/tests/unit/volume/drivers/test_pure.py index 93d7eab938a..a4d1825d5a0 100644 --- a/cinder/tests/unit/volume/drivers/test_pure.py +++ b/cinder/tests/unit/volume/drivers/test_pure.py @@ -2681,6 +2681,7 @@ class PureVolumeUpdateStatsTestCase(PureBaseSharedDriverTestCase): 'consistencygroup_support': True, 'thin_provisioning_support': True, 'multiattach': True, + 'QoS_support': False, 'total_capacity_gb': TOTAL_CAPACITY, 'free_capacity_gb': TOTAL_CAPACITY - USED_SPACE, 'reserved_percentage': reserved_percentage, diff --git a/cinder/volume/drivers/pure.py b/cinder/volume/drivers/pure.py index 634fc655c6a..575be4ed39f 100644 --- a/cinder/volume/drivers/pure.py +++ b/cinder/volume/drivers/pure.py @@ -556,6 +556,7 @@ class PureBaseVolumeDriver(san.SanDriver): data['consistencygroup_support'] = True data['thin_provisioning_support'] = True data['multiattach'] = True + data['QoS_support'] = False # Add capacity info for scheduler data['total_capacity_gb'] = total_capacity