mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
prevent database error from crashing server
This commit is contained in:
parent
ce6a05ab66
commit
9496ec9b57
@ -36,6 +36,8 @@ types.setTypeParser(types.builtins.INT8, (val) => Number(val));
|
||||
dialect: new PostgresDialect({
|
||||
pool: new Pool({
|
||||
connectionString: environmentService.getDatabaseURL(),
|
||||
}).on('error', (err) => {
|
||||
console.error('Database error:', err.message);
|
||||
}),
|
||||
}),
|
||||
plugins: [new CamelCasePlugin()],
|
||||
|
Loading…
x
Reference in New Issue
Block a user