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:
commit
0afd9d1bb3
1 changed files with 9 additions and 1 deletions
10
lib/index.js
10
lib/index.js
|
@ -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}')
|
||||
|
|
Loading…
Add table
Reference in a new issue