Skip to content

Commit

Permalink
Merge pull request #2022 from B3Partners/BRMO-347
Browse files Browse the repository at this point in the history
[BRMO-347] Aanpassen connection pool instellingen om ApplicationName toe te voegen
  • Loading branch information
mprins authored Jan 29, 2024
2 parents fa14f77 + f5acf86 commit e49b8b4
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker/src/main/docker/tomcat_conf/server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,32 +10,32 @@
<Resource auth="Container" driverClassName="org.postgresql.Driver" maxTotal="40" initialSize="2"
minEvictableIdleTimeMillis="5000" name="jdbc/brmo/staging" password="${DB_PASS_STAGING}"
timeBetweenEvictionRunsMillis="30000" type="javax.sql.DataSource"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/staging?sslmode=allow" username="staging"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/staging?sslmode=allow&amp;ApplicationName=brmo-service" username="staging"
validationQuery="select 1"/>
<Resource auth="Container" driverClassName="org.postgresql.Driver" maxTotal="40" initialSize="0"
minEvictableIdleTimeMillis="5000" name="jdbc/brmo/rsgb" password="${DB_PASS_RSGB}"
timeBetweenEvictionRunsMillis="30000" type="javax.sql.DataSource"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/rsgb?sslmode=allow" username="rsgb"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/rsgb?sslmode=allow&amp;ApplicationName=brmo-service" username="rsgb"
validationQuery="select 1"/>
<Resource auth="Container" driverClassName="org.postgresql.Driver" maxTotal="40" initialSize="0"
minEvictableIdleTimeMillis="5000" name="jdbc/brmo/rsgbbrk" password="${DB_PASS_RSGB}"
timeBetweenEvictionRunsMillis="30000" type="javax.sql.DataSource"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/rsgb?currentSchema=brk&amp;sslmode=allow" username="rsgb"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/rsgb?currentSchema=brk&amp;sslmode=allow&amp;ApplicationName=brmo-service" username="rsgb"
validationQuery="select 1"/>
<Resource auth="Container" driverClassName="org.postgresql.Driver" maxTotal="40" initialSize="0"
minEvictableIdleTimeMillis="5000" name="jdbc/brmo/rsgbbag" password="${DB_PASS_RSGB}"
timeBetweenEvictionRunsMillis="30000" type="javax.sql.DataSource"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/rsgb?sslmode=allow&amp;reWriteBatchedInserts=true" username="rsgb"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/rsgb?sslmode=allow&amp;reWriteBatchedInserts=true&amp;ApplicationName=brmo-service" username="rsgb"
validationQuery="select 1"/>
<Resource auth="Container" driverClassName="org.postgresql.Driver" maxTotal="40" initialSize="0"
minEvictableIdleTimeMillis="5000" name="jdbc/brmo/rsgbbgt" password="${DB_PASS_RSGBBGT}"
timeBetweenEvictionRunsMillis="30000" type="javax.sql.DataSource"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/rsgbbgt?sslmode=allow&amp;reWriteBatchedInserts=true" username="rsgbbgt"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/rsgbbgt?sslmode=allow&amp;reWriteBatchedInserts=true&amp;ApplicationName=brmo-service" username="rsgbbgt"
validationQuery="select 1"/>
<Resource auth="Container" driverClassName="org.postgresql.Driver" maxTotal="40" initialSize="0"
minEvictableIdleTimeMillis="5000" name="jdbc/brmo/rsgbtopnl" password="${DB_PASS_TOPNL}"
timeBetweenEvictionRunsMillis="30000" type="javax.sql.DataSource"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/topnl?sslmode=allow&amp;reWriteBatchedInserts=true" username="topnl"
url="jdbc:postgresql://${PG_HOST}:${PG_PORT}/topnl?sslmode=allow&amp;reWriteBatchedInserts=true&amp;ApplicationName=brmo-service" username="topnl"
validationQuery="select 1"/>
<Environment name="brmo/nhr/active" value="false" type="java.lang.Boolean" />
<Resource name="mail/session"
Expand Down

0 comments on commit e49b8b4

Please sign in to comment.