Skip to content

Commit 806cbb2

Browse files
committed
✅(hub) increase max pool size
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
1 parent 6072c88 commit 806cbb2

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/impress.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,7 @@ jobs:
143143
AWS_S3_ENDPOINT_URL: http://localhost:9000
144144
AWS_S3_ACCESS_KEY_ID: impress
145145
AWS_S3_SECRET_ACCESS_KEY: password
146+
DB_PSYCOPG_POOL_MAX_SIZE: 15
146147

147148
steps:
148149
- name: Checkout repository

env.d/development/postgresql

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ DB_HOST=postgresql
88
DB_NAME=impress
99
DB_USER=dinum
1010
DB_PASSWORD=pass
11-
DB_PORT=5432
11+
DB_PORT=5432
12+
DB_PSYCOPG_POOL_MAX_SIZE=15

0 commit comments

Comments
 (0)