From 32b2641fd8cb1013d2e60f8b10870d2d14986ba8 Mon Sep 17 00:00:00 2001 From: Manuel Raynaud Date: Thu, 12 Mar 2026 16:09:45 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=85(hub)=20increase=20max=20pool=20size?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In order to run the tests we need to increase the max pool size. Only having 4 connections in the pool is not enough and all the tests using a transaction are failing with a tiemout error. We have the same problem running locally so the same value is added to the postgresql environment file --- .github/workflows/impress.yml | 1 + env.d/development/postgresql | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/impress.yml b/.github/workflows/impress.yml index 6e0d23bf0..4b7b9acc6 100644 --- a/.github/workflows/impress.yml +++ b/.github/workflows/impress.yml @@ -143,6 +143,7 @@ jobs: AWS_S3_ENDPOINT_URL: http://localhost:9000 AWS_S3_ACCESS_KEY_ID: impress AWS_S3_SECRET_ACCESS_KEY: password + DB_PSYCOPG_POOL_MAX_SIZE: 15 steps: - name: Checkout repository diff --git a/env.d/development/postgresql b/env.d/development/postgresql index a58172575..4d08ff970 100644 --- a/env.d/development/postgresql +++ b/env.d/development/postgresql @@ -8,4 +8,5 @@ DB_HOST=postgresql DB_NAME=impress DB_USER=dinum DB_PASSWORD=pass -DB_PORT=5432 \ No newline at end of file +DB_PORT=5432 +DB_PSYCOPG_POOL_MAX_SIZE=15