fix: remove non-existent deleted_at column from stops query
Deploy to route.crispygoat.com / deploy (push) Successful in 3m59s

This commit is contained in:
Tyler
2026-06-10 13:37:39 -06:00
parent 8428f3a490
commit 24cf9a7261
6 changed files with 1 additions and 7 deletions
+1 -1
View File
@@ -51,7 +51,7 @@ function buildPool(): Pool {
max: parseInt(process.env.PG_POOL_MAX ?? "10", 10),
idleTimeoutMillis: parseInt(process.env.PG_POOL_IDLE_MS ?? "30000", 10),
connectionTimeoutMillis: parseInt(
process.env.PG_POOL_CONN_TIMEOUT_MS ?? "10000",
process.env.PG_POOL_CONN_TIMEOUT_MS ?? "30000",
10,
),
// Vercel/serverless recycling: keep the pool hot for warm invocations.