0
Fork 0
mirror of https://github.com/verdaccio/verdaccio.git synced 2025-04-01 02:42:23 -05:00

Merge pull request #56 from strongloop/fix-unknown-package-name-response

Make 404 responses compatible with CouchDB API
This commit is contained in:
Alex Kocharin 2014-03-13 19:15:04 +00:00
commit 0afd9d1bb3

View file

@ -64,7 +64,15 @@ module.exports = function(config_hash) {
if (err.status && err.status >= 400 && err.status < 600) {
if (calls == 1) {
res.status(err.status)
res.send({error: err.msg || err.message || 'unknown error'})
var body = {error: err.msg || err.message || 'unknown error'};
// Make 404 responses compliant with CouchDB REST API
if (err.status == 404) {
body.reason = body.error
body.error = 'not_found'
}
res.send(body)
}
} else {
Logger.logger.error({err: err}, 'unexpected error: @{!err.message}\n@{err.stack}')