From ea0caef88ff5b46bd1644294642e57d317a2a2c8 Mon Sep 17 00:00:00 2001 From: "DK.Pino" Date: Thu, 9 Jan 2020 16:53:03 +0800 Subject: [PATCH] Regularize quartz.properties conf file (#1783) * remove lombok dependency(last) * regularize quartz.properties conf file --- .../src/main/resources/quartz.properties | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/dolphinscheduler-common/src/main/resources/quartz.properties b/dolphinscheduler-common/src/main/resources/quartz.properties index 684aabcd66..ceec9e5d64 100644 --- a/dolphinscheduler-common/src/main/resources/quartz.properties +++ b/dolphinscheduler-common/src/main/resources/quartz.properties @@ -20,10 +20,12 @@ #============================================================================ #org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.StdJDBCDelegate org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.PostgreSQLDelegate -#org.quartz.dataSource.myDs.driver = com.mysql.jdbc.Driver +# postgre org.quartz.dataSource.myDs.driver = org.postgresql.Driver -#org.quartz.dataSource.myDs.URL = jdbc:mysql://192.168.xx.xx:3306/dolphinscheduler?characterEncoding=utf8 org.quartz.dataSource.myDs.URL = jdbc:postgresql://localhost:5432/dolphinscheduler?characterEncoding=utf8 +# mysql +#org.quartz.dataSource.myDs.driver = com.mysql.jdbc.Driver +#org.quartz.dataSource.myDs.URL = jdbc:mysql://localhost:3306/dolphinscheduler?characterEncoding=utf8 org.quartz.dataSource.myDs.user = test org.quartz.dataSource.myDs.password = test