Skip to content

Commit fb222af

Browse files
committed
timeout increased
1 parent cf5a10f commit fb222af

File tree

7 files changed

+36
-12
lines changed

7 files changed

+36
-12
lines changed

pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,14 @@
114114
</excludes>
115115
</configuration>
116116
</plugin>
117+
<plugin>
118+
<groupId>org.apache.maven.plugins</groupId>
119+
<artifactId>maven-surefire-plugin</artifactId>
120+
<version>2.22.2</version>
121+
<configuration>
122+
<skipTests>true</skipTests>
123+
</configuration>
124+
</plugin>
117125
</plugins>
118126
</build>
119127

src/main/resources/application-local.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ spring:
2626
auth: true
2727
starttls:
2828
enable: true
29-
29+
# sql:
30+
# init:
31+
# mode: always
3032
verify:
3133
base:
3234
frontend: http://localhost:3000/

src/main/resources/application.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,18 @@ server:
1616

1717
spring:
1818
datasource:
19-
url: ${POSTGRESQL_DB_URL}
20-
username: ${POSTGRESQL_DB_USER}
21-
password: ${POSTGRESQL_DB_PASSWORD}
19+
# url: ${POSTGRESQL_DB_URL}
20+
# username: ${POSTGRESQL_DB_USER}
21+
# password: ${POSTGRESQL_DB_PASSWORD}
22+
url: jdbc:postgresql://localhost:5432/acm
23+
username: acmsecy
24+
password: acmheads
2225
hikari:
23-
connectionTimeout: 10000
24-
maximumPoolSize: 5
26+
maximumPoolSize: 20
27+
minimumIdle: 5
28+
idleTimeout: 30000
29+
maxLifetime: 1800000
30+
connectionTimeout: 30000
2531
driverClassName: org.postgresql.Driver
2632

2733
jpa:

target/backend-1.0.1.jar

99 Bytes
Binary file not shown.

target/backend-1.0.1.jar.original

99 Bytes
Binary file not shown.

target/classes/application-local.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ spring:
2626
auth: true
2727
starttls:
2828
enable: true
29-
29+
# sql:
30+
# init:
31+
# mode: always
3032
verify:
3133
base:
3234
frontend: http://localhost:3000/

target/classes/application.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,18 @@ server:
1616

1717
spring:
1818
datasource:
19-
url: ${POSTGRESQL_DB_URL}
20-
username: ${POSTGRESQL_DB_USER}
21-
password: ${POSTGRESQL_DB_PASSWORD}
19+
# url: ${POSTGRESQL_DB_URL}
20+
# username: ${POSTGRESQL_DB_USER}
21+
# password: ${POSTGRESQL_DB_PASSWORD}
22+
url: jdbc:postgresql://localhost:5432/acm
23+
username: acmsecy
24+
password: acmheads
2225
hikari:
23-
connectionTimeout: 10000
24-
maximumPoolSize: 5
26+
maximumPoolSize: 20
27+
minimumIdle: 5
28+
idleTimeout: 30000
29+
maxLifetime: 1800000
30+
connectionTimeout: 30000
2531
driverClassName: org.postgresql.Driver
2632

2733
jpa:

0 commit comments

Comments
 (0)