From 34b331e87b6378c3c728aa413bec1a9a27f5d5f2 Mon Sep 17 00:00:00 2001 From: magic_rb Date: Mon, 23 Oct 2023 16:10:01 +0200 Subject: [PATCH] Increase Hydra PSQL max connections MORE Signed-off-by: magic_rb --- nixng/containers/hydra/postgresql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixng/containers/hydra/postgresql.nix b/nixng/containers/hydra/postgresql.nix index a61c5d3..cc0874a 100644 --- a/nixng/containers/hydra/postgresql.nix +++ b/nixng/containers/hydra/postgresql.nix @@ -26,7 +26,7 @@ makeSystem { authentication = "host all all all md5"; config = { - max_connections = 100; + max_connections = 1024; }; ensureDatabases = [ "hydra" ];