From 7645452f9001071615310c85349f7ad58c18a5d6 Mon Sep 17 00:00:00 2001 From: Luna D Date: Fri, 24 Nov 2023 16:14:14 +0100 Subject: [PATCH] temporarily hardcode pool size (undo this later) --- config/runtime.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/runtime.exs b/config/runtime.exs index 2c434e0b..e79ef9ed 100644 --- a/config/runtime.exs +++ b/config/runtime.exs @@ -105,7 +105,7 @@ if config_env() != :test do # Database config config :philomena, Philomena.Repo, url: System.fetch_env!("DATABASE_URL"), - pool_size: String.to_integer(System.get_env("POOL_SIZE", "16")), + pool_size: 8, timeout: 60_000, ownership_timeout: 60_000 end