mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-4610: fix incorrect value available_bytes of storage pool
(cherry picked from commit 5c141a46fc)
This commit is contained in:
parent
ab60e9eae9
commit
13a0619732
|
|
@ -2663,7 +2663,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