Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -2376,7 +2376,7 @@ protected ServiceOfferingVO createServiceOffering(final long userId, final boole
limitResourceUse, volatileVm, displayText, typedProvisioningType, localStorageRequired, false, tags, isSystem, vmType,
domainId, hostTag, deploymentPlanner);

if (Boolean.TRUE.equals(isCustomizedIops)) {
if (Boolean.TRUE.equals(isCustomizedIops) || isCustomizedIops == null) {
minIops = null;
maxIops = null;
} else {
Expand Down Expand Up @@ -2597,7 +2597,7 @@ protected DiskOfferingVO createDiskOffering(final Long userId, final Long domain
isCustomized = true;
}

if (Boolean.TRUE.equals(isCustomizedIops)) {
if (Boolean.TRUE.equals(isCustomizedIops) || isCustomizedIops == null) {
minIops = null;
maxIops = null;
} else {
Expand Down