From 8c44848da73f7b06963a10eb9e2c08bfbfe5f81f Mon Sep 17 00:00:00 2001 From: John Paul Ashenfelter Date: Sun, 15 Feb 2026 21:15:53 -0500 Subject: [PATCH] Rightsize the database connection pool for inprocess solidqueue --- config/database.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/database.yml b/config/database.yml index 7c4b6ffb4..f3d933f30 100644 --- a/config/database.yml +++ b/config/database.yml @@ -9,7 +9,7 @@ base: &base adapter: trilogy encoding: utf8mb4 # <-- forces UTF-8 everywhere collation: utf8mb4_unicode_ci # <-- portable across MySQL 5.7/8.0 and MariaDB - pool: 5 + pool: <%= ENV.fetch("DB_POOL", 10) %> user: root password: host: 127.0.0.1