CLOUDSTACK-6669: Fix support resize in usage server

Signed-off-by: Sebastien Goasguen <runseb@gmail.com>
(cherry picked from commit f0ea44daf1)
This commit is contained in:
Olivier Lemasle 2014-06-06 23:04:43 +02:00 committed by Daan Hoogland
parent 65bffefd0b
commit 6721701a54
1 changed files with 1 additions and 1 deletions

View File

@ -87,7 +87,7 @@ public class VolumeUsageParser {
long zoneId = usageVol.getZoneId();
Long templateId = usageVol.getTemplateId();
long size = usageVol.getSize();
String key = "" + volId;
String key = volId + "-" + doId + "-" + size;
diskOfferingMap.put(key, new VolInfo(volId, zoneId, doId, templateId, size));