mirror of https://github.com/apache/cloudstack.git
server: fix cannot update vm if it uses unconstraint dynamic offering (#7077)
Co-authored-by: Abhishek Kumar <abhishek.mrt22@gmail.com>
This commit is contained in:
parent
d33d84fa0f
commit
1dd064c8a9
|
|
@ -327,7 +327,7 @@ public class ServiceOfferingVO implements ServiceOffering {
|
|||
}
|
||||
|
||||
public boolean isCustomCpuSpeedSupported() {
|
||||
return isCustomized() && getDetail("minCPU") != null;
|
||||
return isCustomized() && speed == null;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue