mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-4610: fix incorrect value available_bytes of storage pool
This commit is contained in:
parent
7bff499bd3
commit
5c141a46fc
|
|
@ -2629,7 +2629,7 @@ ServerResource {
|
|||
|
||||
Map<String, TemplateProp> tInfo = new HashMap<String, TemplateProp>();
|
||||
ModifyStoragePoolAnswer answer = new ModifyStoragePoolAnswer(cmd,
|
||||
storagepool.getCapacity(), storagepool.getUsed(), tInfo);
|
||||
storagepool.getCapacity(), storagepool.getAvailable(), tInfo);
|
||||
|
||||
return answer;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue