We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc0c2b commit d55bf83Copy full SHA for d55bf83
CHANGELOG.md
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
8
## [Unreleased]
9
10
+### Fixes
11
+- Change connection manager upsert timeout to 5 minutes
12
+
13
## [3.0.1] - 2025-04-01
14
15
### Fixes
packages/backend/src/env.ts
@@ -44,7 +44,7 @@ export const env = createEnv({
44
DATABASE_URL: z.string().url().default("postgresql://postgres:postgres@localhost:5432/postgres"),
45
CONFIG_PATH: z.string().optional(),
46
47
- CONNECTION_MANAGER_UPSERT_TIMEOUT_MS: numberSchema.default(10000),
+ CONNECTION_MANAGER_UPSERT_TIMEOUT_MS: numberSchema.default(300000),
48
},
49
runtimeEnv: process.env,
50
emptyStringAsUndefined: true,
0 commit comments