CLOUDSTACK-6575: Deploy VM failed with NPE while using custom compute offering

This commit is contained in:
Saksham Srivastava 2014-05-07 13:53:43 +05:30 committed by Rajesh Battala
parent cadefb1aeb
commit 84135cd302
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ public class ServiceOfferingVO extends DiskOfferingVO implements ServiceOffering
offering.getUseLocalStorage(),
offering.getSystemUse(),
true,
offering.isCustomizedIops(),
offering.isCustomizedIops()== null ? false:offering.isCustomizedIops(),
offering.getDomainId());
cpu = offering.getCpu();
ramSize = offering.getRamSize();