Przeglądaj źródła

return a 409 for DocModified errors

Brian Gough 5 lat temu
rodzic
commit
dd082ad345
1 zmienionych plików z 2 dodań i 0 usunięć
  1. 2 0
      services/docstore/app.js

+ 2 - 0
services/docstore/app.js

@@ -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')
   }
   }