From ee6378be27803a8b8a12e35a8c2ee8d446e0e97b Mon Sep 17 00:00:00 2001 From: Claudio Ortolina Date: Mon, 16 Sep 2024 14:45:11 +0100 Subject: [PATCH] Increase db pool size in dev Improves fetching of multiple images from the db at the same time. --- config/dev.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/dev.exs b/config/dev.exs index d6a905eb..e384df0f 100644 --- a/config/dev.exs +++ b/config/dev.exs @@ -3,7 +3,7 @@ import Config # Configure your database config :music_library, MusicLibrary.Repo, database: Path.expand("../music_library_dev.db", __DIR__), - pool_size: 5, + pool_size: 10, stacktrace: true, show_sensitive_data_on_connection_error: true