disable ssl for sql

This commit is contained in:
2021-05-09 21:59:27 +02:00
parent 370944814c
commit 3cd6b8b57e
@@ -50,7 +50,8 @@ public class TippligaSQLConnector {
"&useJDBCCompliantTimezoneShift=true" +
"&useLegacyDatetimeCode=false" +
"&serverTimezone=UTC" +
"&allowMultiQueries=true";
"&allowMultiQueries=true" +
"&useSSL=false";
try {
con = DriverManager.getConnection(jdbcUrlProd);
} catch (SQLException e) {