bug 5190: updating the command list

This commit is contained in:
abhishek 2010-09-28 11:28:40 -07:00
parent bbdc135c12
commit 0af7ad934b
2 changed files with 4 additions and 2 deletions

View File

@ -213,9 +213,11 @@ registerPreallocatedLun=com.cloud.server.api.commands.RegisterPreallocatedLunCmd
deletePreallocatedLun=com.cloud.server.api.commands.DeletePreallocatedLunCmd;1
listPreallocatedLuns=com.cloud.api.commands.ListPreallocatedLunsCmd;1
#### vm group commands
createInstanceGroup=com.cloud.api.commands.CreateVMGroupCmd;15
deleteInstanceGroup=com.cloud.api.commands.DeleteVMGroupCmd;15
updateInstanceGroup=com.cloud.api.commands.UpdateVMGroupCmd;15
listInstanceGroups=com.cloud.api.commands.ListVMGroupsCmd;15
### Certificate commands
updateCustomCertificate=com.cloud.api.commands.UpdateCertificateCmd;15

View File

@ -9115,7 +9115,7 @@ public class ManagementServerImpl implements ManagementServer {
@Override
public boolean updateCertificate(String certificatePath)
{
return _certDao.persistCustomCertToDb(certificatePath);
return _certDao.persistCustomCertToDb(certificatePath );
}
}