From 1b6c11b71cef67cda4b9a0b288b99edcb71b7955 Mon Sep 17 00:00:00 2001 From: anaj00 Date: Mon, 22 Jun 2026 15:43:08 +0800 Subject: [PATCH] chore: rm max pool size --- lib/db/use-bi-moa-backend.ts | 1 - lib/db/use-refs-backend.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/lib/db/use-bi-moa-backend.ts b/lib/db/use-bi-moa-backend.ts index b6fe0024..4be06043 100644 --- a/lib/db/use-bi-moa-backend.ts +++ b/lib/db/use-bi-moa-backend.ts @@ -21,7 +21,6 @@ const db = new Kysely({ dialect: new PostgresDialect({ pool: new Pool({ connectionString: DATABASE_URL, - max: 1, }), }), }); diff --git a/lib/db/use-refs-backend.ts b/lib/db/use-refs-backend.ts index f5e9e88a..61108e53 100644 --- a/lib/db/use-refs-backend.ts +++ b/lib/db/use-refs-backend.ts @@ -34,7 +34,6 @@ const db = new Kysely({ dialect: new PostgresDialect({ pool: new Pool({ connectionString: DATABASE_URL, - max: 1, }), }), });