1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-01-20 00:08:02 +01:00

fix: adjust db-pool for test to use max=4

This commit is contained in:
Ivar Conradi Østhus 2022-12-14 20:25:14 +01:00
parent e01167676c
commit 34c12c8234
No known key found for this signature in database
GPG Key ID: 14F51E4841AF1DE1

View File

@ -86,7 +86,7 @@ export default async function init(
const config = createTestConfig({
db: {
...getDbConfig(),
pool: { min: 1, max: 3 },
pool: { min: 1, max: 4 },
schema: databaseSchema,
ssl: false,
},