We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5185c0 commit b1d70f7Copy full SHA for b1d70f7
1 file changed
utils/src/com/cloud/utils/db/Transaction.java
@@ -93,6 +93,12 @@ public class Transaction {
93
} catch (Exception e) {
94
s_logger.error("Unable to register mbean for transaction", e);
95
}
96
+
97
+ /* FIXME: We need a better solution for this
98
+ * Initialize encryption if we need it for db.properties
99
+ */
100
+ EncryptionSecretKeyChecker enc = new EncryptionSecretKeyChecker();
101
+ enc.check();
102
103
104
private final LinkedList<StackElement> _stack;
0 commit comments