Skip to content

Commit

Permalink
Change: reset default of jdbc pool
Browse files Browse the repository at this point in the history
  • Loading branch information
strehle committed Aug 29, 2024
1 parent 28116ea commit d2e9c9b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions server/src/main/resources/spring/data-source.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,9 @@
<property name="validationQuery" value="#{@validationQuery}"/>
<property name="testOnBorrow" value="true"/>
<property name="testWhileIdle" value="${database.testwhileidle:false}"/>
<property name="minIdle" value="${database.minidle:0}"/>
<property name="minIdle" value="${database.minidle:10}"/>
<property name="maxActive" value="${database.maxactive:100}"/>
<property name="maxIdle" value="${database.maxidle:10}"/>
<property name="maxIdle" value="${database.maxidle:100}"/>
<property name="maxWait" value="${database.maxwait:30000}"/>
<property name="initialSize" value="${database.initialsize:10}"/>
<property name="validationQueryTimeout" value="${database.validationquerytimeout:10}"/>
Expand Down

0 comments on commit d2e9c9b

Please sign in to comment.