From 3b962823f452e08e0e0af6a0f966a869519f4981 Mon Sep 17 00:00:00 2001 From: whitesoup12 Date: Mon, 8 Jan 2024 14:45:10 -0600 Subject: [PATCH] Update maximum-pool-size value in bootstrap.yml 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. --- remote-falcon-api/src/main/resources/bootstrap.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remote-falcon-api/src/main/resources/bootstrap.yml b/remote-falcon-api/src/main/resources/bootstrap.yml index 41b82f9..ff56089 100644 --- a/remote-falcon-api/src/main/resources/bootstrap.yml +++ b/remote-falcon-api/src/main/resources/bootstrap.yml @@ -17,7 +17,7 @@ spring: datasource: url: jdbc:${DATABASE_URL} hikari: - maximum-pool-size: 75 + maximum-pool-size: ${CONNECTION_POOL_SIZE} management: endpoints: