Skip to content

Commit 22dc645

Browse files
author
Gustavo Silveira
committed
fix curly brace
1 parent 6f28947 commit 22dc645

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/src/main/java/com/cloud/configuration/ConfigurationManagerImpl.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8242,7 +8242,8 @@ public Integer getServiceOfferingNetworkRate(final long serviceOfferingId, final
82428242
if (offering.getVmType() != null && offering.getVmType().equalsIgnoreCase(VirtualMachine.Type.DomainRouter.toString())) {
82438243
networkRate = NetworkOrchestrationService.NetworkThrottlingRate.valueIn(dataCenterId);
82448244
} else {
8245-
networkRate = NetworkOrchestrationService.VmNetworkThrottlingRate.value();}
8245+
networkRate = NetworkOrchestrationService.VmNetworkThrottlingRate.value();
8246+
}
82468247
}
82478248

82488249
// networkRate is unsigned int in serviceOffering table, and can't be

0 commit comments

Comments
 (0)