Skip to content

Commit

Permalink
chore: connection pool 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Dec 3, 2024
1 parent 4748d4d commit 7a995d5
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aws-cicd-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches:
- develop
- feat/LA-20
- chore/db-connection

env:
REGISTRY: "docker.io"
Expand Down
1 change: 0 additions & 1 deletion layer-admin/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ spring:
driver-class-name: com.mysql.cj.jdbc.Driver
hikari:
maximum-pool-size: 5 #최대 pool 크기
minimum-idle: 5 #최소 pool 크기
jpa:
hibernate:
ddl-auto: validate
Expand Down
2 changes: 2 additions & 0 deletions layer-admin/src/main/resources/application-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ spring:
username: ${AWS_PROD_DB_NAME}
password: ${AWS_PROD_DB_PASSWORD}
driver-class-name: com.mysql.cj.jdbc.Driver
hikari:
maximum-pool-size: 5 #최대 pool 크기
jpa:
hibernate:
ddl-auto: validate
Expand Down
1 change: 0 additions & 1 deletion layer-api/src/main/resources/application-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ spring:
driver-class-name: com.mysql.cj.jdbc.Driver
hikari:
maximum-pool-size: 5 #최대 pool 크기
minimum-idle: 5 #최소 pool 크기
jpa:
hibernate:
ddl-auto: validate
Expand Down

0 comments on commit 7a995d5

Please sign in to comment.