Skip to content

Commit d55bf83

Browse files
committed
bump connection manager upsert timeout
1 parent cbc0c2b commit d55bf83

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
### Fixes
11+
- Change connection manager upsert timeout to 5 minutes
12+
1013
## [3.0.1] - 2025-04-01
1114

1215
### Fixes

packages/backend/src/env.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export const env = createEnv({
4444
DATABASE_URL: z.string().url().default("postgresql://postgres:postgres@localhost:5432/postgres"),
4545
CONFIG_PATH: z.string().optional(),
4646

47-
CONNECTION_MANAGER_UPSERT_TIMEOUT_MS: numberSchema.default(10000),
47+
CONNECTION_MANAGER_UPSERT_TIMEOUT_MS: numberSchema.default(300000),
4848
},
4949
runtimeEnv: process.env,
5050
emptyStringAsUndefined: true,

0 commit comments

Comments
 (0)