From 473777560fdc4409fbf2daf74ea4d85eec831f0c Mon Sep 17 00:00:00 2001 From: magic_rb Date: Mon, 23 Oct 2023 15:56:47 +0200 Subject: [PATCH] Increase Hydra PSQL max connections again? 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 fd7b7db..a61c5d3 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 = 40; + max_connections = 100; }; ensureDatabases = [ "hydra" ];