Toyou: Remove allocated_capacity_gb calculation

toyou drivers are currently reporting allocated_capacity_gb.
Drivers should not report this and let Cinder core take care 
of this value.

Closes-Bug: #1991634
Change-Id: I62c3d41ef92e0d474f5315b5bb1186faa187d958
This commit is contained in:
tushargite96 2022-10-04 13:27:34 +05:30 committed by Tushar Trambak Gite
parent c94962b98e
commit 6358aa167e
1 changed files with 0 additions and 3 deletions

View File

@ -776,8 +776,6 @@ class Acs5000CommonDriver(san.SanDriver,
pool_data['capacity']) / units.Gi
free_capacity_gb = float(
pool_data['free_capacity']) / units.Gi
allocated_capacity_gb = float(
pool_data['used_capacity']) / units.Gi
total_volumes = None
if 'total_volumes' in pool_data.keys():
total_volumes = int(pool_data['total_volumes'])
@ -788,7 +786,6 @@ class Acs5000CommonDriver(san.SanDriver,
'pool_name': pool_data['name'],
'total_capacity_gb': total_capacity_gb,
'free_capacity_gb': free_capacity_gb,
'allocated_capacity_gb': allocated_capacity_gb,
'compression_support': True,
'reserved_percentage':
self.configuration.reserved_percentage,