1
0
Fork 0

Better error message on postgresql connection err

This commit is contained in:
Chocobozzz 2020-08-24 11:33:59 +02:00
parent cf649c2ed9
commit 4f24f16e27
No known key found for this signature in database
GPG Key ID: 583A612D890159BE
1 changed files with 8 additions and 0 deletions

View File

@ -75,6 +75,14 @@ const sequelizeTypescript = new SequelizeTypescript({
}
})
sequelizeTypescript.authenticate()
.then(() => logger.debug('Connection to PostgreSQL has been established successfully.'))
.catch(err => {
logger.error('Unable to connect to PostgreSQL database.', { err })
process.exit(-1)
})
async function initDatabaseModels (silent: boolean) {
sequelizeTypescript.addModels([
ApplicationModel,