Github user DaanHoogland commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/599#discussion_r34875009 --- Diff: framework/db/src/com/cloud/utils/db/Merovingian2.java --- @@ -63,9 +63,7 @@ private Merovingian2(long msId) { super(MerovingianMBean.class, false); _msId = msId; - Connection conn = null; - try { - conn = TransactionLegacy.getStandaloneConnectionWithException(); + try (Connection conn = TransactionLegacy.getStandaloneConnectionWithException();) { --- End diff -- having said that, doesn't it make sense to make the goncierge cloasble as well?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. ---