diff --git a/lib/db/init.ts b/lib/db/init.ts index ed4667d..b4cdb08 100644 --- a/lib/db/init.ts +++ b/lib/db/init.ts @@ -1,6 +1,6 @@ import { Pool } from "https://deno.land/x/postgres@v0.19.3/mod.ts"; import {postgresConfig} from "lib/db/pgConfig.ts"; -const pool = new Pool(postgresConfig, 32); +const pool = new Pool(postgresConfig, 10); export const db = pool;