CLOUDSTACK-1498: even we put the db encryption check at the wrong place, but 
seems it breaks other people's task, so add it back


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

Branch: refs/heads/vim51_win8
Commit: 8ae800193379f3494d56baf3c5d26c6a10624c25
Parents: d922f6f
Author: Edison Su <[email protected]>
Authored: Mon Mar 4 14:11:09 2013 -0800
Committer: Edison Su <[email protected]>
Committed: Mon Mar 4 14:11:09 2013 -0800

----------------------------------------------------------------------
 utils/src/com/cloud/utils/db/Transaction.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-cloudstack/blob/8ae80019/utils/src/com/cloud/utils/db/Transaction.java
----------------------------------------------------------------------
diff --git a/utils/src/com/cloud/utils/db/Transaction.java 
b/utils/src/com/cloud/utils/db/Transaction.java
index c151044..9113aca 100755
--- a/utils/src/com/cloud/utils/db/Transaction.java
+++ b/utils/src/com/cloud/utils/db/Transaction.java
@@ -97,8 +97,8 @@ public class Transaction {
         /* FIXME: We need a better solution for this
          * Initialize encryption if we need it for db.properties
          */ 
-        /*EncryptionSecretKeyChecker enc = new EncryptionSecretKeyChecker();
-        enc.check();   */     
+        EncryptionSecretKeyChecker enc = new EncryptionSecretKeyChecker();
+        enc.check();  
     }
 
     private final LinkedList<StackElement> _stack;

Reply via email to