From 8ae800193379f3494d56baf3c5d26c6a10624c25 Mon Sep 17 00:00:00 2001 From: Edison Su Date: Mon, 4 Mar 2013 14:11:09 -0800 Subject: [PATCH] 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 --- utils/src/com/cloud/utils/db/Transaction.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/src/com/cloud/utils/db/Transaction.java b/utils/src/com/cloud/utils/db/Transaction.java index c15104455c0..9113aca4b25 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 _stack;