I think i was using BOTH pool connections....:
- Application-managed (default); based on HikariCP, the related parameters
can be tuned in the related domain configuration file, e.g.
domains/Master.properties, for the Master domain.
- JavaEE Container-managed, via the JNDI resource matching the name
specified for a given domain, e.g.
java:comp/env/jdbc/syncopeMasterDataSource for the Master domain.

After deleting the quartz tables were finally created

<Resource name="jdbc/syncopeMasterDataSource" auth="Container"
type="javax.sql.DataSource"
          factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"
testWhileIdle="true"
          testOnBorrow="true" testOnReturn="true"
          validationQuery="SELECT 1" validationInterval="30000"
          maxActive="100" minIdle="2" maxWait="10000" initialSize="2"
          removeAbandonedTimeout="20" removeAbandoned="true"
logAbandoned="true"
          suspectTimeout="20" timeBetweenEvictionRunsMillis="5000"
          minEvictableIdleTimeMillis="5000" defaultAutoCommit="false"
         
jdbcInterceptors="org.apache.tomcat.jdbc.pool.interceptor.ConnectionState;
            org.apache.tomcat.jdbc.pool.interceptor.StatementFinalizer"
          username="syncope" password="syncope"
driverClassName="org.postgresql.Driver"
         
url="jdbc:postgresql://localhost:5432/syncope?characterEncoding=UTF-8"/>



--
Sent from: http://syncope-user.1051894.n5.nabble.com/

Reply via email to