Repository: cloudstack
Updated Branches:
  refs/heads/4.4 94cad49e0 -> 2f2ff4bfc


engine: Fix build regression

Signed-off-by: Rohit Yadav <[email protected]>


Project: http://git-wip-us.apache.org/repos/asf/cloudstack/repo
Commit: http://git-wip-us.apache.org/repos/asf/cloudstack/commit/2f2ff4bf
Tree: http://git-wip-us.apache.org/repos/asf/cloudstack/tree/2f2ff4bf
Diff: http://git-wip-us.apache.org/repos/asf/cloudstack/diff/2f2ff4bf

Branch: refs/heads/4.4
Commit: 2f2ff4bfc024ea3fbc23adc94ad48e31eb3b4447
Parents: 94cad49
Author: Rohit Yadav <[email protected]>
Authored: Fri Dec 12 21:49:11 2014 +0530
Committer: Rohit Yadav <[email protected]>
Committed: Fri Dec 12 21:49:11 2014 +0530

----------------------------------------------------------------------
 engine/schema/src/com/cloud/upgrade/dao/Upgrade442to443.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cloudstack/blob/2f2ff4bf/engine/schema/src/com/cloud/upgrade/dao/Upgrade442to443.java
----------------------------------------------------------------------
diff --git a/engine/schema/src/com/cloud/upgrade/dao/Upgrade442to443.java 
b/engine/schema/src/com/cloud/upgrade/dao/Upgrade442to443.java
index 864c7ae..145381ef 100644
--- a/engine/schema/src/com/cloud/upgrade/dao/Upgrade442to443.java
+++ b/engine/schema/src/com/cloud/upgrade/dao/Upgrade442to443.java
@@ -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) {

Reply via email to