mirror of https://github.com/apache/cloudstack.git
Fix typo
This commit is contained in:
parent
2a93464431
commit
9aaea28d0d
|
|
@ -80,7 +80,7 @@ public class Upgrade421to430 implements DbUpgrade {
|
|||
|
||||
try {
|
||||
selectPstmt = conn.prepareStatement("SELECT id FROM `cloud`.`service_offering` WHERE vm_type='secondarystoragevm'");
|
||||
updatePstmt = conn.prepareStatement("UPDATE `cloud`.`service_offering` SET ram_size=? WHERE id=?'");
|
||||
updatePstmt = conn.prepareStatement("UPDATE `cloud`.`service_offering` SET ram_size=? WHERE id=?");
|
||||
selectResultSet = selectPstmt.executeQuery();
|
||||
if(selectResultSet.next()) {
|
||||
serviceOfferingId = selectResultSet.getLong("id");
|
||||
|
|
|
|||
Loading…
Reference in New Issue