fix: remove erroneous if in migration

This commit is contained in:
José Oliveira 2021-05-14 17:14:42 +01:00 committed by Josh Harvey
parent e951d1341c
commit 074dbabbba

View file

@ -37,9 +37,6 @@ exports.up = function (next) {
.then(() => next()) .then(() => next())
}) })
.catch(err => { .catch(err => {
if (err.message === 'lamassu-server is not configured') {
return next()
}
console.log(err.message) console.log(err.message)
return next(err) return next(err)
}) })