return a 409 for DocModified errors

This commit is contained in:
Brian Gough 2021-08-02 10:25:18 +01:00
parent 69339aeb9d
commit dd082ad345

View file

@ -91,6 +91,8 @@ app.use(function (error, req, res, next) {
logger.error({ err: error, req }, 'request errored') logger.error({ err: error, req }, 'request errored')
if (error instanceof Errors.NotFoundError) { if (error instanceof Errors.NotFoundError) {
return res.sendStatus(404) return res.sendStatus(404)
} else if (error instanceof Errors.DocModifiedError) {
return res.sendStatus(409)
} else { } else {
return res.status(500).send('Oops, something went wrong') return res.status(500).send('Oops, something went wrong')
} }