Skip to content

Commit

Permalink
Update maximum-pool-size value in bootstrap.yml
Browse files Browse the repository at this point in the history
The change replaces the hardcoded value 75 with a configurable value for the maximum-pool-size in the hikari datasource configuration. This allows easier configuration adjustment to different environments.
  • Loading branch information
whitesoup12 committed Jan 8, 2024
1 parent 357c01b commit 3b96282
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion remote-falcon-api/src/main/resources/bootstrap.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spring:
datasource:
url: jdbc:${DATABASE_URL}
hikari:
maximum-pool-size: 75
maximum-pool-size: ${CONNECTION_POOL_SIZE}

management:
endpoints:
Expand Down

0 comments on commit 3b96282

Please sign in to comment.