Skip to content

Commit

Permalink
Merge pull request #5512 from peterrinehart/BACKLOG-39797
Browse files Browse the repository at this point in the history
[BACKLOG-39797] Updating properties of
  • Loading branch information
ddiroma authored Jan 30, 2024
2 parents cefd702 + 7b5ac46 commit 49b10f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ datasource.validation.query=SELECT 1 FROM INFORMATION_SCHEMA.SYSTEM_USERS
# for a connection to be returned before throwing an exception, or <= 0 to wait indefinitely. Default value is -1
datasource.pool.max.wait=-1

# The maximum number of active connections that can be allocated from this pool at the same time, or negative for no limit. Default value is 8
# The maximum number of connections that can be allocated from this pool at the same time, or negative for no limit. Default value is 8
datasource.pool.max.active=8

# The maximum number of connections that can remain idle in the pool, without extra ones being destroyed, or negative for no limit. Default value is 8
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@
<property name="password" value="${datasource.password}" />
<!-- the following are optional -->
<property name="validationQuery" value="${datasource.validation.query}" />
<property name="maxWait" value="${datasource.pool.max.wait}" />
<property name="maxActive" value="${datasource.pool.max.active}" />
<property name="maxWaitMillis" value="${datasource.pool.max.wait}" />
<property name="maxTotal" value="${datasource.pool.max.active}" />
<property name="maxIdle" value="${datasource.max.idle}" />
<property name="minIdle" value="${datasource.min.idle}" />
</bean>
Expand Down

0 comments on commit 49b10f2

Please sign in to comment.