bump connection manager upsert timeout

This commit is contained in:
msukkari 2025-04-02 14:33:39 -07:00
parent cbc0c2b521
commit d55bf83ac1
2 changed files with 4 additions and 1 deletions

View file

@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
### Fixes
- Change connection manager upsert timeout to 5 minutes
## [3.0.1] - 2025-04-01
### Fixes

View file

@ -44,7 +44,7 @@ export const env = createEnv({
DATABASE_URL: z.string().url().default("postgresql://postgres:postgres@localhost:5432/postgres"),
CONFIG_PATH: z.string().optional(),
CONNECTION_MANAGER_UPSERT_TIMEOUT_MS: numberSchema.default(10000),
CONNECTION_MANAGER_UPSERT_TIMEOUT_MS: numberSchema.default(300000),
},
runtimeEnv: process.env,
emptyStringAsUndefined: true,