Skip to content

Commit

Permalink
Merge pull request #88 from YAPP-Github/dev
Browse files Browse the repository at this point in the history
release
  • Loading branch information
CChuYong authored Dec 14, 2024
2 parents 03dbfce + d53a0bf commit 7444a1e
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 2 deletions.
10 changes: 9 additions & 1 deletion photo-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,14 @@ spring:
url: ${MYSQL_URL}
username: ${MYSQL_USERNAME}
password: ${MYSQL_PASSWORD}
pool:
enabled: true
initial-size: 30
max-acquire-time: 5s
max-create-connection-time: 5s
max-idle-time: 60m
max-life-time: 60m
max-size: 50
flyway:
url: ${FLYWAY_URL}
baseline-on-migrate: true
Expand Down Expand Up @@ -60,4 +68,4 @@ recap:
src: /usr/bin/recap/src/

lambda:
endpoint: ${LAMBDA_URL}
endpoint: ${LAMBDA_URL}
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
CREATE INDEX `idx_album_external_id` ON `album`(`external_id`);
10 changes: 9 additions & 1 deletion user-service/src/main/resources/application.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,14 @@ spring:
url: ${MYSQL_URL}
username: ${MYSQL_USERNAME}
password: ${MYSQL_PASSWORD}
pool:
enabled: true
initial-size: 30
max-acquire-time: 5s
max-create-connection-time: 5s
max-idle-time: 60m
max-life-time: 60m
max-size: 50
logging:
level:
org.springframework.data.r2dbc: DEBUG
Expand Down Expand Up @@ -49,4 +57,4 @@ slack:
token: ${SLACK_TOKEN}
channel:
error: ${SLACK_ERROR_CHANNEL}
member: ${SLACK_MEMBER_CHANNEL}
member: ${SLACK_MEMBER_CHANNEL}

0 comments on commit 7444a1e

Please sign in to comment.