CLOUDSTACK-6669: Fix support resize in usage server

Signed-off-by: Sebastien Goasguen <runseb@gmail.com>
(cherry picked from commit 303e6ffc1e)
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>

Conflicts:
	usage/src/com/cloud/usage/parser/VolumeUsageParser.java
This commit is contained in:
Olivier Lemasle 2014-06-06 23:04:43 +02:00 committed by Rohit Yadav
parent 06a664b063
commit ed90e0c751
1 changed files with 1 additions and 1 deletions

View File

@ -85,7 +85,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));