This repository was archived by the owner on Sep 28, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
perun-oidc-server-webapp/src/main/webapp/WEB-INF Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 29
29
<property name =" jdbcUrl" value =" ${jdbc.url}" />
30
30
<property name =" username" value =" ${jdbc.user}" />
31
31
<property name =" password" value =" ${jdbc.password}" />
32
- <property name =" maximumPoolSize" value =" 50 " />
32
+ <property name =" maximumPoolSize" value =" ${jdbc.max_pool_size} " />
33
33
</bean >
34
34
35
35
<bean id =" mitreIdStats" class =" com.zaxxer.hikari.HikariDataSource" destroy-method =" close" >
36
36
<property name =" driverClassName" value =" ${jdbc.driver}" />
37
37
<property name =" jdbcUrl" value =" ${stats.jdbc.url}" />
38
38
<property name =" username" value =" ${stats.jdbc.user}" />
39
39
<property name =" password" value =" ${stats.jdbc.password}" />
40
+ <property name =" maximumPoolSize" value =" ${stats.jdbc.max_pool_size}" />
40
41
</bean >
41
42
42
43
<bean id =" jpaAdapter" class =" org.springframework.orm.jpa.vendor.EclipseLinkJpaVendorAdapter" >
Original file line number Diff line number Diff line change 124
124
<prop key =" jdbc.user" >oidc</prop >
125
125
<prop key =" jdbc.password" >oidc</prop >
126
126
<prop key =" jdbc.platform" >org.eclipse.persistence.platform.database.MySQLPlatform</prop >
127
+ <prop key =" jdbc.max_pool_size" >50</prop >
127
128
<!-- SAML AUTH -->
128
129
<prop key =" saml.entityID" >https://login.cesnet.cz/oidc/</prop >
129
130
<prop key =" saml.keystore.location" >/etc/perun/perun-mitreid-saml-keystore.jks</prop >
143
144
<prop key =" stats.jdbc.url" >jdbc:mariadb://localhost:3306/STATS</prop >
144
145
<prop key =" stats.jdbc.user" >user</prop >
145
146
<prop key =" stats.jdbc.password" >password</prop >
147
+ <prop key =" stats.jdbc.max_pool_size" >10</prop >
146
148
<!-- WEB INTERFACE -->
147
149
<prop key =" web.theme" >default</prop >
148
150
<prop key =" web.langs" >EN</prop > <!-- EN,CS,SK -->
You can’t perform that action at this time.
0 commit comments