mirror of https://github.com/apache/cloudstack.git
engine: Fix build regression
Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
94cad49e07
commit
2f2ff4bfc0
|
|
@ -69,7 +69,7 @@ public class Upgrade442to443 implements DbUpgrade {
|
|||
PreparedStatement updatePstmt = null;
|
||||
try {
|
||||
String encryptedValue = DBEncryptionUtil.encrypt("256");
|
||||
updatePstmt = conn.prepareStatement("UPDATE `cloud`.`configuration` SET value=? WHERE name='router.ram.size' AND category='Hidden');
|
||||
updatePstmt = conn.prepareStatement("UPDATE `cloud`.`configuration` SET value=? WHERE name='router.ram.size' AND category='Hidden'");
|
||||
updatePstmt.setBytes(1, encryptedValue.getBytes("UTF-8"));
|
||||
updatePstmt.executeUpdate();
|
||||
} catch (SQLException e) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue