mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
get postgres connection pool size from env
This commit is contained in:
parent
03c4adc930
commit
942b2374b8
1 changed files with 3 additions and 1 deletions
|
|
@ -16,9 +16,11 @@ export const appDataSource = new DataSource({
|
|||
subscribers: [__dirname + '/events/**/*{.js,.ts}'],
|
||||
namingStrategy: new SnakeNamingStrategy(),
|
||||
logger: new CustomTypeOrmLogger(['query', 'info']),
|
||||
connectTimeoutMS: 40000, // 40 seconds
|
||||
connectTimeoutMS: 10000, // 10 seconds
|
||||
maxQueryExecutionTime: 10000, // 10 seconds
|
||||
extra: {
|
||||
options: process.env.PG_EXTRA_OPTIONS,
|
||||
max: env.pg.pool.max,
|
||||
idleTimeoutMillis: 10000, // 10 seconds
|
||||
},
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue