longer `statement_timeout` for migrations - fixes 450

This commit is contained in:
dakkar 2024-03-09 15:38:36 +00:00
parent d1f0fc6d5d
commit 43544a6479
1 changed files with 5 additions and 1 deletions

View File

@ -11,7 +11,11 @@ export default new DataSource({
username: config.db.user,
password: config.db.pass,
database: config.db.db,
extra: config.db.extra,
extra: {
...config.db.extra,
// migrations may be very slow, give them longer to run (that 10*1000 comes from postgres.ts)
statement_timeout: (config.db.extra?.statement_timeout ?? 1000 * 10) * 10,
},
entities: entities,
migrations: ['migration/*.js'],
});