Github user DaanHoogland commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/1553#discussion_r64179203 --- Diff: framework/db/src/com/cloud/utils/db/TransactionLegacy.java --- @@ -1014,6 +1014,13 @@ public static void initDataSource(Properties dbProps) { if (dbProps.size() == 0) return; + try { + // Explicitely load JDBC driver because it has been removed from the classpath as part of commit c22659d76d73f00f41c13776c490e17a50aacd20 + Class.forName("com.mysql.jdbc.Driver"); --- End diff -- ad 1. so we can use a property that is used for both, right? ad 2. fair enough, thanks.
--- 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. ---