fix(db): raise db pool size (#4263)

* fix(db): raise db pool size

* Raise socket connections

* bump up connection size even more
This commit is contained in:
Theodore Li
2026-04-22 14:25:13 -04:00
committed by GitHub
parent 0aeab026a8
commit d927d8bdff
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ const socketDb = drizzle(
prepare: false,
idle_timeout: 10,
connect_timeout: 20,
max: 10,
max: 30,
onnotice: () => {},
}),
{ schema }
+1 -1
View File
@@ -14,7 +14,7 @@ const postgresClient = postgres(connectionString, {
prepare: false,
idle_timeout: 20,
connect_timeout: 30,
max: 10,
max: 30,
onnotice: () => {},
})