diff --git a/src/db.ts b/src/db.ts index e2339f9a0..fde438260 100644 --- a/src/db.ts +++ b/src/db.ts @@ -20,7 +20,7 @@ export const client = Knex({ }, pool: { min: 1, - max: 50, + max: 200, }, }); diff --git a/src/db.unit.test.ts b/src/db.unit.test.ts index 2b157675d..18e9d850d 100644 --- a/src/db.unit.test.ts +++ b/src/db.unit.test.ts @@ -11,7 +11,7 @@ describe('Knex Configuration', () => { it('should have correct pool settings', () => { expect(client.client.pool).toMatchObject({ min: 1, - max: 50, + max: 200, }); }); });